/* ============ Click N Fly — Main Stylesheet (v2, refined) ============ */
:root {
  --navy: #0b1f3f;
  --navy-2: #122c56;
  --blue: #1d5fd6;
  --blue-dark: #164aa8;
  --blue-tint: #eef4fd;
  --amber: #f0a92e;
  --amber-dark: #d18f14;
  --ink: #22304a;
  --muted: #64748b;
  --faint: #94a3b8;
  --line: #e6ebf2;
  --bg: #fafbfd;
  --white: #ffffff;
  --good: #15803d;
  --good-bg: #f0faf4;
  --bad: #c2410c;
  --bad-tint: #b91c1c;
  --radius: 12px;
  --radius-sm: 9px;
  --shadow-xs: 0 1px 2px rgba(15, 30, 60, .05);
  --shadow: 0 1px 3px rgba(15, 30, 60, .06), 0 6px 20px rgba(15, 30, 60, .05);
  --shadow-lg: 0 4px 12px rgba(15, 30, 60, .07), 0 20px 44px rgba(15, 30, 60, .12);
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-head: 'Sora', 'Plus Jakarta Sans', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--bg); line-height: 1.65; font-size: 15.5px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.25; letter-spacing: -0.015em; font-weight: 700; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 700px; }
.muted { color: var(--muted); font-size: .84rem; }
.center-text { text-align: center; }

/* Inline icons */
.ic { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; vertical-align: -2.5px; }
.ic-lg { width: 22px; height: 22px; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: .92rem; padding: 11px 22px; border-radius: var(--radius-sm); border: 1px solid transparent; cursor: pointer; transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease; white-space: nowrap; letter-spacing: .01em; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-accent { background: var(--amber); color: var(--navy); font-weight: 700; }
.btn-accent:hover { background: var(--amber-dark); color: var(--navy); }
.btn-outline { background: #fff; color: var(--navy); border-color: #cdd7e4; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-ghost { background: transparent; color: var(--ink); border-color: transparent; }
.btn-ghost:hover { background: var(--blue-tint); color: var(--blue); }
.btn-sm { padding: 8px 16px; font-size: .85rem; }
.btn-lg { padding: 14px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---- Flash announcement bar ---- */
.flashbar { background: var(--navy); color: #fff; font-size: .84rem; position: relative; z-index: 60; }
.flashbar-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 16px; min-height: 42px; }
.flash-tag { color: var(--amber); font-weight: 700; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; flex-shrink: 0; padding-right: 16px; border-right: 1px solid rgba(255, 255, 255, .15); }
.flash-track { flex: 1; position: relative; overflow: hidden; height: 42px; }
.flash-item { position: absolute; inset: 0; display: flex; align-items: center; gap: 14px; opacity: 0; transform: translateY(6px); transition: opacity .4s ease, transform .4s ease; pointer-events: none; }
.flash-item.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.flash-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: rgba(255, 255, 255, .92); }
.flash-cta { color: var(--amber); font-weight: 700; font-size: .8rem; flex-shrink: 0; display: inline-flex; align-items: center; gap: 5px; }
.flash-cta:hover { color: #fff; }
.flash-nav { display: flex; gap: 2px; flex-shrink: 0; }
.flash-nav button { background: transparent; border: 0; color: rgba(255, 255, 255, .55); width: 26px; height: 26px; border-radius: 6px; cursor: pointer; font-size: 1.05rem; line-height: 1; transition: .15s; }
.flash-nav button:hover { background: rgba(255, 255, 255, .1); color: #fff; }

/* ---- Header ---- */
.site-header { background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 40px; height: 40px; border-radius: 10px; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; }
.brand-mark svg { width: 20px; height: 20px; fill: #fff; }
.brand-text { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--navy); line-height: 1.15; display: flex; flex-direction: column; letter-spacing: -0.01em; }
.brand-text small { font-size: .58rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .22em; }
.brand-light .brand-text { color: #fff; }
.brand-light .brand-text small { color: var(--faint); }
.brand-light .brand-mark { background: rgba(255, 255, 255, .1); }
.main-nav { display: flex; gap: 4px; }
.main-nav a { color: var(--ink); font-weight: 500; font-size: .9rem; padding: 8px 13px; border-radius: 8px; transition: .15s; }
.main-nav a:hover { color: var(--blue); background: var(--blue-tint); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .25s; }

/* ---- Hero ---- */
.hero { position: relative; padding-bottom: 64px; background: var(--navy); }
.hero-slides { position: relative; height: 540px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.active { opacity: 1; animation: kenburns 10s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(95deg, rgba(8, 20, 43, .78) 20%, rgba(8, 20, 43, .38) 58%, rgba(8, 20, 43, .12)); }
.hero-content { position: relative; z-index: 2; height: 540px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 20px; }
.hero-kicker { color: var(--amber); font-weight: 600; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; }
.hero-kicker::before { content: ''; width: 28px; height: 1px; background: var(--amber); }
.hero-content h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.3rem); font-weight: 700; max-width: 620px; letter-spacing: -0.025em; }
.hero-content p { color: rgba(255, 255, 255, .82); font-size: 1.08rem; max-width: 480px; font-weight: 400; }
.hero-dots { position: absolute; right: 32px; top: 45%; z-index: 5; display: flex; flex-direction: column; gap: 10px; }
.hero-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .45); cursor: pointer; transition: .2s; padding: 0; }
.hero-dots button.active { background: #fff; height: 22px; border-radius: 5px; }

/* ---- Search bar ---- */
.search-bar { position: relative; z-index: 10; margin-top: -54px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; padding: 10px; align-items: center; }
.search-bar-inline { margin-top: 0; box-shadow: var(--shadow); grid-template-columns: 1.4fr 1fr auto auto; }
.search-field { padding: 8px 18px; border-right: 1px solid var(--line); }
.search-field:last-of-type { border-right: 0; }
.search-field label { display: flex; align-items: center; gap: 6px; font-size: .68rem; font-weight: 700; color: var(--faint); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 2px; }
.search-field input, .search-field select { width: 100%; border: 0; outline: none; font-family: var(--font-body); font-size: .93rem; font-weight: 500; color: var(--navy); background: transparent; padding: 4px 0; }
.search-field input::placeholder { color: var(--faint); font-weight: 400; }
.search-btn { margin: 0 6px; align-self: center; }

/* ---- Features strip ---- */
.features { padding: 60px 0 4px; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: border-color .2s, box-shadow .2s; }
.feature:hover { border-color: #c9d6e8; box-shadow: var(--shadow); }
.feature-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--blue-tint); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature h3 { font-size: .95rem; margin-bottom: 3px; font-weight: 600; }
.feature p { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* ---- Sections ---- */
.section { padding: 76px 0; }
.section-alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark { background: var(--navy); }
.section-dark h2 { color: #fff; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.section-head.center { flex-direction: column; align-items: center; text-align: center; }
.section-head h2 { font-size: clamp(1.5rem, 2.8vw, 2.05rem); }
.section-head p { color: var(--muted); margin-top: 8px; max-width: 520px; }
.section-dark .section-head p { color: rgba(255, 255, 255, .65); }
.eyebrow { color: var(--blue); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; display: block; margin-bottom: 10px; }
.section-dark .eyebrow { color: var(--amber); }

/* ---- Filter tabs ---- */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filter-tabs button { background: transparent; border: 1px solid var(--line); color: var(--muted); font-family: var(--font-body); font-weight: 600; font-size: .84rem; padding: 8px 18px; border-radius: 999px; cursor: pointer; transition: .18s; }
.filter-tabs button:hover { border-color: var(--blue); color: var(--blue); }
.filter-tabs button.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ---- Trip cards ---- */
.trips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trip-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease; display: flex; flex-direction: column; }
.trip-card:hover { transform: translateY(-3px); border-color: #c9d6e8; box-shadow: var(--shadow-lg); }
.trip-card-media { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; }
.trip-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.trip-card:hover .trip-card-media img { transform: scale(1.04); }
.img-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--blue-tint); color: var(--faint); }
.trip-badge { position: absolute; top: 12px; left: 12px; background: rgba(255, 255, 255, .95); color: var(--navy); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 5px 11px; border-radius: 6px; z-index: 2; }
.trip-badge-warn { left: auto; right: 12px; background: var(--navy); color: #fff; text-transform: none; letter-spacing: 0; }
.trip-hero-content .trip-badge { position: static; display: inline-block; background: rgba(255, 255, 255, .14); color: #fff; backdrop-filter: blur(6px); }
.trip-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.trip-meta { display: flex; gap: 16px; font-size: .78rem; color: var(--muted); font-weight: 500; align-items: center; }
.trip-meta span { display: inline-flex; align-items: center; gap: 5px; }
.trip-card-body h3 { font-size: 1.08rem; font-weight: 600; }
.trip-card-body h3 a { color: var(--navy); }
.trip-card-body h3 a:hover { color: var(--blue); }
.trip-sub { font-size: .84rem; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.55; }
.trip-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.trip-price { font-family: var(--font-head); font-weight: 700; font-size: 1.22rem; color: var(--navy); }
.trip-price small { font-size: .7rem; color: var(--muted); font-weight: 500; }
.empty-note { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 48px; background: #fff; border: 1px dashed var(--line); border-radius: var(--radius); }

/* ---- Destinations ---- */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/3.8; background-size: cover; background-position: center; display: flex; align-items: flex-end; transition: transform .25s; background-color: var(--navy-2); }
.dest-card:hover { transform: translateY(-4px); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8, 18, 40, .85)); transition: .3s; }
.dest-card:hover .dest-overlay { background: linear-gradient(180deg, rgba(8, 18, 40, .1) 25%, rgba(8, 18, 40, .9)); }
.dest-info { position: relative; z-index: 2; padding: 22px; }
.dest-info h3 { color: #fff; font-size: 1.15rem; font-weight: 600; }
.dest-info p { color: rgba(255, 255, 255, .75); font-size: .8rem; margin-top: 2px; }
.dest-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; color: #fff; font-weight: 600; font-size: .8rem; opacity: .85; }
.dest-card:hover .dest-link { opacity: 1; color: var(--amber); }

/* ---- Umrah ---- */
.umrah-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.umrah-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; display: flex; flex-direction: column; gap: 10px; transition: box-shadow .25s, border-color .25s; }
.umrah-card:hover { box-shadow: var(--shadow-lg); }
.umrah-featured { border-color: var(--navy); border-width: 1.5px; }
.umrah-badge { position: absolute; top: -12px; left: 28px; background: var(--navy); color: #fff; font-size: .66rem; font-weight: 700; padding: 5px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
.umrah-card h3 { font-size: 1.12rem; font-weight: 600; }
.umrah-nights { color: var(--muted); font-weight: 500; font-size: .84rem; }
.umrah-price { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--navy); margin: 6px 0 2px; letter-spacing: -0.02em; }
.umrah-price small { font-size: .78rem; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.umrah-desc { font-size: .86rem; color: var(--muted); }
.umrah-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 12px 0 20px; flex: 1; }
.umrah-card li { font-size: .87rem; color: var(--ink); display: flex; gap: 9px; align-items: flex-start; }
.umrah-card li .ic { color: var(--good); margin-top: 4px; }

/* ---- Steps ---- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius); padding: 28px 24px; }
.step-num { display: inline-flex; width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, .1); color: var(--amber); font-family: var(--font-head); font-weight: 700; font-size: 1rem; align-items: center; justify-content: center; margin-bottom: 16px; }
.step h3 { color: #fff; font-size: .98rem; margin-bottom: 6px; font-weight: 600; }
.step p { color: rgba(255, 255, 255, .6); font-size: .84rem; line-height: 1.6; }

/* ---- Page hero (inner pages) ---- */
.page-hero { background: var(--navy); color: #fff; padding: 60px 0; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
.page-hero p { color: rgba(255, 255, 255, .72); margin-top: 10px; }
.confirm-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(255, 255, 255, .1); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--amber); }
.ref-chip { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .25); color: #fff; padding: 3px 14px; border-radius: 6px; letter-spacing: .08em; font-family: var(--font-head); }

/* ---- Trip detail ---- */
.trip-hero { position: relative; min-height: 430px; background-size: cover; background-position: center; background-color: var(--navy); display: flex; align-items: flex-end; }
.trip-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 18, 40, .3), rgba(8, 18, 40, .85)); }
.trip-hero-content { position: relative; z-index: 2; padding: 52px 24px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.trip-hero-content h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.trip-hero-content > p { color: rgba(255, 255, 255, .82); font-size: 1.05rem; }
.trip-hero-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.trip-hero-meta span { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-weight: 500; font-size: .84rem; background: rgba(255, 255, 255, .12); backdrop-filter: blur(6px); padding: 7px 14px; border-radius: 8px; }
.trip-layout { padding-top: 44px; }
.trip-columns { display: grid; grid-template-columns: 1fr 396px; gap: 36px; align-items: start; }
.detail-block { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; margin-bottom: 20px; }
.detail-block h2 { font-size: 1.12rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; font-weight: 600; }
.detail-block h2 .ic { color: var(--blue); width: 19px; height: 19px; }
.detail-toggle-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.detail-toggle-head h2 { margin-bottom: 0; }
.rich-text { color: var(--ink); font-size: .93rem; line-height: 1.75; }
.detail-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.detail-cols .detail-block { margin-bottom: 0; }
.price-table { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.price-row:last-child { border-bottom: 0; }
.price-row:nth-child(odd) { background: #fbfcfe; }
.price-row small { color: var(--muted); }
.price-row strong { color: var(--navy); font-family: var(--font-head); }
.pickup-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.pickup-list li { display: flex; gap: 14px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 11px 16px; font-size: .9rem; }
.pickup-time { font-family: var(--font-head); background: var(--blue-tint); color: var(--blue); font-weight: 700; font-size: .8rem; padding: 4px 11px; border-radius: 6px; flex-shrink: 0; }
.itinerary { margin-top: 20px; border-left: 2px solid var(--line); margin-left: 5px; padding-left: 24px; display: flex; flex-direction: column; gap: 22px; }
.itinerary[hidden] { display: none; }
.itin-step { position: relative; }
.itin-step::before { content: ''; position: absolute; left: -30px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: #fff; border: 2.5px solid var(--blue); }
.itin-time { font-size: .74rem; font-weight: 700; color: var(--blue); letter-spacing: .06em; font-family: var(--font-head); }
.itin-body h4 { font-size: .98rem; margin: 3px 0 2px; font-weight: 600; }
.itin-body p { font-size: .86rem; color: var(--muted); }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; gap: 10px; font-size: .9rem; align-items: flex-start; }
.check-list li::before { font-weight: 700; flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .68rem; margin-top: 1px; }
.check-list.good li::before { content: '✓'; color: var(--good); background: var(--good-bg); }
.check-list.bad li::before { content: '✕'; color: var(--bad-tint); background: #fdf2f0; }
.check-list.neutral li::before { content: '•'; color: var(--blue); background: var(--blue-tint); font-size: 1rem; }
.note-block { background: #fffcf5; border-color: #f0e2c0; }
.note-block h2 .ic { color: var(--amber-dark); }
.note-block ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.note-block li { position: relative; padding-left: 22px; font-size: .88rem; color: #6b5518; line-height: 1.6; }
.note-block li::before { content: ''; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--amber-dark); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gallery-grid img { border-radius: var(--radius-sm); aspect-ratio: 4/3; object-fit: cover; }

/* ---- Booking wizard ---- */
.booking-panel { position: sticky; top: 92px; }
.booking-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 28px; }
.booking-card > h2 { font-size: 1.1rem; margin-bottom: 14px; }
.booking-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.booking-head h2 { font-size: 1.1rem; font-weight: 600; }
.booking-steps { display: flex; gap: 5px; }
.bstep { width: 26px; height: 26px; border-radius: 8px; background: var(--bg); border: 1px solid var(--line); color: var(--faint); font-size: .74rem; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: .2s; font-family: var(--font-head); }
.bstep.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.bstep.done { background: var(--good-bg); border-color: #bfe3cd; color: var(--good); }
.bstep-panel { display: none; }
.bstep-panel.active { display: block; animation: fadeUp .3s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(6px); } }
.bstep-title { font-size: 1rem; margin-bottom: 12px; font-weight: 600; }
.field-label { display: block; font-size: .72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin: 18px 0 7px; }
.booking-card input[type=text], .booking-card input[type=email], .booking-card input[type=tel], .booking-card select {
  width: 100%; padding: 11px 14px; border: 1px solid #cdd7e4; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .92rem; font-weight: 500; color: var(--navy); background: #fff; outline: none; transition: border-color .18s, box-shadow .18s;
}
.booking-card input:focus, .booking-card select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29, 95, 214, .12); }
.booking-card input.invalid { border-color: var(--bad-tint); }
.counter-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); }
.counter-row:last-of-type { border-bottom: 0; }
.counter-label { font-weight: 600; font-size: .9rem; line-height: 1.4; }
.counter-label small { color: var(--muted); font-weight: 400; font-size: .78rem; }
.counter { display: flex; align-items: center; gap: 2px; }
.counter button { width: 32px; height: 32px; border-radius: 8px; border: 1px solid #cdd7e4; background: #fff; color: var(--navy); font-size: 1.05rem; font-weight: 600; cursor: pointer; transition: .15s; line-height: 1; }
.counter button:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-tint); }
.counter input { width: 40px !important; text-align: center; border: 0 !important; font-weight: 700 !important; font-size: 1rem !important; padding: 0 !important; box-shadow: none !important; font-family: var(--font-head); }
.booking-total { display: flex; align-items: center; justify-content: space-between; background: var(--navy); border-radius: var(--radius-sm); padding: 14px 18px; margin: 20px 0 14px; }
.booking-total span { font-weight: 500; color: rgba(255, 255, 255, .7); font-size: .88rem; }
.booking-total strong { font-family: var(--font-head); font-size: 1.4rem; color: #fff; letter-spacing: -0.01em; }
.bstep-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; }
.pax-group { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px; margin-top: 12px; background: #fbfcfe; }
.pax-group h5 { font-family: var(--font-body); font-size: .74rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.pax-group input { margin-bottom: 8px; }
.pax-group input:last-child { margin-bottom: 0; }
.pay-option { display: flex; gap: 12px; align-items: flex-start; border: 1px solid #cdd7e4; border-radius: var(--radius-sm); padding: 15px 16px; margin-top: 10px; cursor: pointer; transition: .18s; }
.pay-option:hover { border-color: var(--blue); }
.pay-option:has(input:checked) { border-color: var(--blue); background: var(--blue-tint); box-shadow: 0 0 0 1px var(--blue); }
.pay-option input { accent-color: var(--blue); margin-top: 4px; }
.pay-option strong { font-size: .92rem; }
.pay-option small { color: var(--muted); font-size: .8rem; line-height: 1.5; }
.booking-summary { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 18px; font-size: .87rem; margin-bottom: 10px; background: #fbfcfe; }
.booking-summary div { display: flex; justify-content: space-between; padding: 3px 0; color: var(--muted); }
.booking-summary div strong { color: var(--ink); font-weight: 600; }
.booking-summary .sum-total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 9px; }
.booking-summary .sum-total strong { color: var(--navy); font-family: var(--font-head); font-size: 1.05rem; }

/* ---- Seat map ---- */
.seat-legend { display: flex; gap: 16px; font-size: .76rem; color: var(--muted); margin-bottom: 10px; flex-wrap: wrap; }
.seat-legend span { display: inline-flex; align-items: center; gap: 6px; }
.seat-demo { width: 16px; height: 16px; border-radius: 5px; border: 1.5px solid #cdd7e4; background: #fff; display: inline-block; }
.seat-demo-sel { background: var(--blue); border-color: var(--blue); }
.seat-demo-taken { background: #e6ebf2; border-color: #e6ebf2; }
.seat-map-wrap { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px; background: #fbfcfe; max-height: 340px; overflow-y: auto; }
.seat-map { display: flex; flex-direction: column; gap: 7px; width: max-content; margin: 0 auto; }
.seat-row { display: flex; gap: 7px; align-items: center; }
.seat-front { justify-content: flex-end; margin-bottom: 6px; }
.seat-driver { font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); border: 1px dashed #cdd7e4; border-radius: 6px; padding: 5px 12px; }
.seat-aisle { width: 26px; text-align: center; font-size: .66rem; color: var(--faint); font-weight: 600; }
.seat { width: 38px; height: 34px; border-radius: 8px 8px 5px 5px; border: 1.5px solid #cdd7e4; background: #fff; color: var(--muted); font-family: var(--font-body); font-size: .68rem; font-weight: 700; cursor: pointer; transition: .15s; padding: 0; }
.seat:hover { border-color: var(--blue); color: var(--blue); }
.seat.sel { background: var(--blue); border-color: var(--blue); color: #fff; }
.seat.taken { background: #e6ebf2; border-color: #e6ebf2; color: #b3bdcc; cursor: not-allowed; text-decoration: line-through; }
.seat-gap { width: 26px; height: 34px; display: inline-block; flex-shrink: 0; }
.seat-wc { width: 38px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; background: #dde4ee; color: #8494ab; font-size: .62rem; font-weight: 800; letter-spacing: .05em; flex-shrink: 0; }

/* ---- Summary / confirmation ---- */
.summary-rows > div { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.summary-rows > div span { color: var(--muted); }
.summary-rows .summary-total { border-bottom: 0; }
.summary-rows .summary-total strong { color: var(--navy); font-family: var(--font-head); font-size: 1.25rem; }
.bank-box { background: #fbfcfe; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 20px; font-size: .93rem; line-height: 1.9; margin: 14px 0; font-family: var(--font-head); color: var(--navy); }
.pay-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.alert { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 20px; font-size: .92rem; line-height: 1.65; }
.alert-good { background: var(--good-bg); border-color: #bfe3cd; color: #14532d; }
.alert-warn { background: #fffcf5; border-color: #f0e2c0; color: #6b5518; }

/* ---- Footer ---- */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, .7); margin-top: 48px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding: 64px 24px 44px; }
.footer-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; font-weight: 600; }
.footer-col a { display: block; color: rgba(255, 255, 255, .65); font-size: .88rem; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: .88rem; margin: 6px 0; display: flex; align-items: center; gap: 9px; }
.footer-col p .ic { color: var(--faint); }
.footer-col p a { display: inline; padding: 0; }
.footer-about p { margin: 16px 0 20px; font-size: .87rem; line-height: 1.7; display: block; }
.socials { display: flex; gap: 8px; }
.socials a { display: inline-flex; width: 36px; height: 36px; border-radius: 9px; background: rgba(255, 255, 255, .07); align-items: center; justify-content: center; padding: 0; transition: .2s; color: rgba(255, 255, 255, .8); }
.socials a:hover { background: rgba(255, 255, 255, .16); color: #fff; }
.socials svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 20px 0; font-size: .8rem; color: rgba(255, 255, 255, .5); }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255, 255, 255, .55); }
.footer-bottom a:hover { color: #fff; }

/* ---- Floating WhatsApp + mobile book bar ---- */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 80; width: 52px; height: 52px; border-radius: 50%; background: #22c15e; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(34, 193, 94, .4); transition: transform .2s; color: #fff; }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }
.wa-float:hover { transform: scale(1.08); }
.mobile-book-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(15, 30, 60, .08); padding: 12px 20px; align-items: center; justify-content: space-between; }
.mobile-book-bar strong { font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); }
.mobile-book-bar small { color: var(--muted); font-weight: 500; }

/* ---- Responsive ---- */
@media (max-width: 1020px) {
  .trips-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .umrah-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .features-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .trip-columns { grid-template-columns: 1fr; }
  .booking-panel { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .search-bar { grid-template-columns: 1fr 1fr; gap: 4px; }
  .search-field { border-right: 0; }
  .search-btn { grid-column: 1 / -1; margin: 8px 6px 2px; }
}
@media (max-width: 720px) {
  .main-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; gap: 0; padding: 10px 20px 18px; border-bottom: 1px solid var(--line); box-shadow: 0 16px 32px rgba(15, 30, 60, .1); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .main-nav a:last-child { border-bottom: 0; }
  .nav-toggle { display: flex; }
  .header-actions .btn-ghost { display: none; }
  .trips-grid, .dest-grid, .features-grid, .steps-grid, .detail-cols { grid-template-columns: 1fr; }
  .hero-slides, .hero-content { height: 470px; }
  .hero-dots { display: none; }
  .flash-tag { display: none; }
  .section { padding: 56px 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .mobile-book-bar { display: flex; }
  body:has(.mobile-book-bar) .wa-float { bottom: 88px; }
  .search-bar { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-block { padding: 22px; }
}
