/* Haqguru Advisory — B2B Service Portal */

/* Haqguru Advisory brand palette.
   --brand-deep is the wordmark burgundy, --brand-tan the mark's camel accent.
   Text and buttons use the burgundy (11:1 on white); the tan carries icons,
   fills and selected states, where it never has to meet text contrast. */
:root {
  --bg: #FAF8F6;
  --card: #ffffff;
  --ink: #2A1A1C;
  --body: #4A3E3F;
  --muted: #877A7B;
  --faint: #B2A49F;
  --line: #E9DFD7;
  --line-soft: #F0E8E1;
  --line-hair: #F5EFEA;
  --brand-deep: #4A2327;
  --brand: #B8845A;
  --brand-tan: #DEB287;
  --brand-tint: #F8F0E8;
  --brand-sel: #F6E9DC;
  --brand-edge: #DEB287;
  --tick: #4A2327;
  --wa: #25D366;
  --dark: #38191D;
  --radius: 12px;
  --radius-sm: 10px;
  --shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

::placeholder { color: var(--faint); }
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, .1); border-radius: 2px; }

@keyframes fi { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
.fi { animation: fi .3s ease; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 14px 16px; overflow-x: hidden; }

/* ---------------------------------------------------------------- header */
.hdr { margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.hdr-banner {
  width: 100%; max-height: 90px; object-fit: cover;
  border-radius: var(--radius-sm); margin-bottom: 10px; display: block;
}
.hdr-banner-fallback {
  width: 100%; height: 90px; border-radius: var(--radius-sm); margin-bottom: 10px;
  background: linear-gradient(105deg, #2E1418 0%, #3E1D22 45%, #52272C 100%);
  display: flex; align-items: center; padding: 0 26px; position: relative; overflow: hidden;
}
.hdr-banner-fallback::after {
  content: ''; position: absolute; top: -60px; right: -30px; width: 320px; height: 220px;
  background: radial-gradient(at 70% 25%, rgba(222, 178, 135, .45) 0%, transparent 65%);
}
.hdr-banner-fallback .bn {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; font-weight: 600;
  color: #fff; letter-spacing: .5px; position: relative; z-index: 1; line-height: 1.1;
}
.hdr-banner-fallback .bn span { color: var(--brand-tan); }
.hdr-banner-fallback .bt {
  font-size: 10.5px; color: #B2A49F; letter-spacing: 2.4px; text-transform: uppercase;
  margin-top: 3px; position: relative; z-index: 1;
}
.hdr-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.hdr h1 {
  font-size: clamp(18px, 4vw, 24px); font-weight: 300; margin: 0;
  font-family: Avenir, 'Avenir Book', -apple-system, sans-serif; color: var(--ink);
}
.hdr h1 span { color: var(--brand-deep); font-weight: 600; }
.hdr .sub { font-size: 13px; color: var(--faint); margin: 4px 0 0; }
.hdr-links { display: flex; gap: 14px; align-items: center; }
.hdr-links a { font-size: 12px; color: var(--muted); text-decoration: none; }
.hdr-links a:hover { color: var(--brand-deep); }

.back {
  background: none; border: none; padding: 0; margin-bottom: 10px;
  font-family: inherit; font-size: 12.5px; color: var(--muted);
  cursor: pointer; text-decoration: none; display: inline-block;
}
.back:hover { color: var(--brand-deep); }

/* ------------------------------------------------------------ home grid */
.homegrid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.svc-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 13px 15px; display: flex; align-items: center; gap: 13px; text-align: left;
  cursor: pointer; font-family: inherit; transition: .15s; width: 100%; min-width: 0;
  max-width: 100%; text-decoration: none; color: inherit;
}
.svc-card:hover { border-color: var(--brand-edge); transform: translateY(-1px); box-shadow: var(--shadow); }
.svc-card.soon { cursor: default; }
.svc-card.soon:hover { border-color: var(--line-soft); transform: none; box-shadow: none; }
.svc-ico {
  width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--brand-tint);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.svc-ico svg { width: 20px; height: 20px; }
.svc-txt { flex: 1; min-width: 0; overflow: hidden; }
.svc-name {
  font-size: 13.5px; font-weight: 600; color: var(--ink); line-height: 1.25;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.svc-desc {
  font-size: 11.5px; color: var(--faint); margin-top: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.pill-soon {
  font-size: 9px; font-weight: 500; color: #A89880; background: #F2EDE3;
  border: 1px solid #E5DDD0; padding: 2px 7px; border-radius: 20px;
  flex-shrink: 0; white-space: nowrap;
}

/* ----------------------------------------------------------------- CTA */
.cta-bar {
  background: var(--dark); border-radius: 14px; padding: 22px 28px; margin-top: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  position: relative; overflow: hidden; flex-wrap: wrap;
}
.cta-bar::before {
  content: ''; position: absolute; top: -40px; right: -40px; width: 280px; height: 200px;
  background: radial-gradient(at 70% 20%, rgba(222, 178, 135, .40) 0%, transparent 65%);
  pointer-events: none;
}
.cta-bar > div { position: relative; z-index: 1; }
.cta-bar h3 { color: #fff; font-size: 14.5px; font-weight: 600; margin: 0; }
.cta-bar p { color: #B9A69E; font-size: 12.5px; margin: 3px 0 0; }
.cta-btn {
  position: relative; z-index: 1; background: var(--brand-tan); color: #38191D; border: none;
  border-radius: 8px; padding: 10px 20px; font-size: 12.5px; font-weight: 600;
  white-space: nowrap; text-decoration: none; font-family: inherit; cursor: pointer;
}
.cta-btn:hover { background: #EBC7A3; }

/* ---------------------------------------------------------------- cards */
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.card-pad { padding: 18px 20px; }
.intro { font-size: 14px; color: var(--body); line-height: 1.6; margin: 0; }
.badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.badge {
  font-size: 10px; padding: 3px 9px; border-radius: 5px;
  background: rgba(74, 35, 39, .05); color: var(--brand-deep);
  border: 1px solid rgba(74, 35, 39, .12);
}
h3.sec {
  font-size: 16px; font-weight: 600; color: var(--ink); margin: 18px 0 10px;
  letter-spacing: -.2px;
}
h3.sec .sub { font-size: 12px; font-weight: 400; color: var(--muted); margin-left: 8px; }

/* --------------------------------------------------------- freezone UI */
.twocol { display: flex; gap: 14px; align-items: flex-start; }
.leftcol { width: 340px; flex-shrink: 0; }
.rightcol { flex: 1; min-width: 0; }
.fz-search {
  width: 100%; padding: 10px 12px; font-size: 13px; font-family: inherit;
  border: 1px solid var(--line); border-radius: 8px; background: #fff;
  color: var(--ink); outline: none; margin-bottom: 10px;
}
.fz-search:focus { border-color: var(--brand-edge); }
.fz-group {
  font-size: 10px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--faint); margin: 12px 0 6px;
}
.fz-item {
  display: flex; align-items: center; gap: 10px; width: 100%; padding: 10px 12px;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  cursor: pointer; font-family: inherit; text-align: left; margin-bottom: 6px;
  text-decoration: none; color: inherit; transition: .15s;
}
.fz-item:hover { border-color: var(--brand-edge); }
.fz-item.on { background: var(--brand-sel); border-color: var(--brand-edge); }
.fz-logo {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0; display: flex;
  align-items: center; justify-content: center; font-size: 9px; font-weight: 700;
  color: #fff; overflow: hidden;
}
.fz-logo img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.fz-name { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.fz-meta { font-size: 11px; color: var(--faint); margin-top: 1px; }
.fz-note { font-size: 10.5px; color: var(--faint); margin-top: 10px; }

.fz-hdr {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px;
  border-bottom: 1px solid var(--line-hair);
}
.fz-hdr .fz-logo { width: 46px; height: 46px; border-radius: var(--radius-sm); font-size: 11px; }
.fz-hdr h2 { font-size: 20px; font-weight: 600; margin: 0; color: var(--ink); }
.fz-hdr .full { font-size: 12px; color: var(--muted); margin-top: 2px; }
.fz-stats { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 18px; border-bottom: 1px solid var(--line-hair); }
.fz-stat {
  background: #FBF6F1; border: 1px solid var(--line-soft); border-radius: 7px;
  padding: 5px 10px; font-size: 11px; color: var(--body);
}
.fz-stat b { color: var(--ink); font-weight: 600; }
.fz-body { padding: 14px 18px; }
.fz-desc { font-size: 13px; color: var(--body); line-height: 1.6; margin: 0 0 10px; }
.fz-time {
  font-size: 11.5px; color: var(--muted); background: #FBF6F1;
  border: 1px solid var(--line-soft); border-radius: 7px; padding: 8px 11px;
}

.tabs { display: inline-flex; background: #F2EAE3; border-radius: 8px; padding: 3px; margin: 14px 0 12px; }
.tab {
  border: none; background: none; padding: 7px 18px; border-radius: 6px;
  font-family: inherit; font-size: 12.5px; font-weight: 600; color: var(--muted); cursor: pointer;
}
.tab.on { background: #fff; color: var(--brand-deep); box-shadow: var(--shadow); }

.pkggrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pkg {
  padding: 14px; text-align: left; cursor: pointer; font-family: inherit; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  position: relative; box-shadow: 0 1px 2px rgba(0, 0, 0, .03); width: 100%;
  min-width: 0; transition: .15s;
}
.pkg:hover { border-color: var(--brand-edge); }
.pkg.on { background: var(--brand-sel); border-color: var(--brand-edge); box-shadow: 0 0 0 1px var(--brand-edge); }
.pkg-l { font-size: 12.5px; font-weight: 600; color: #666; }
.pkg-p { font-size: 19px; font-weight: 700; color: var(--brand-deep); margin-top: 4px; }
.pkg-v { font-size: 10.5px; color: #AAA; margin-top: 2px; }
.pkg-office { font-size: 9.5px; color: #B4772A; margin-top: 4px; }

.detail-hdr {
  padding: 14px 16px; border-bottom: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.detail-hdr .t { font-size: 17px; font-weight: 600; color: var(--ink); }
.detail-hdr .s { font-size: 11px; color: var(--muted); }
.detail-hdr .p { font-size: 22px; font-weight: 600; color: var(--brand-deep); }
.fee-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 16px; border-bottom: 1px solid var(--line-hair); font-size: 13px;
}
.fee-row span:first-child { color: var(--body); }
.fee-row span:last-child { font-weight: 500; color: var(--ink); white-space: nowrap; }
.fee-row.total { background: #FAF8F6; border-bottom: 1px solid var(--line); }
.fee-row.total span { font-weight: 600; color: var(--ink); }
.fee-head {
  padding: 10px 16px; background: #FAF4EE; border-bottom: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: #555;
}
.warn {
  font-size: 11.5px; color: #B4772A; background: #FFF8EC;
  border-top: 1px solid #F2E4C8; padding: 9px 16px;
}
.incgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.inc { font-size: 12.5px; color: var(--body); padding: 4px 0; display: flex; gap: 9px; align-items: flex-start; }
/* Tick and bullet are drawn in CSS — no emoji, icon font or image. */
.inc .ck { width: 9px; flex-shrink: 0; position: relative; align-self: stretch; }
.inc .ck::before {
  content: ''; position: absolute; left: 1px; top: 4px;
  width: 4px; height: 8px;
  border: solid var(--tick); border-width: 0 1.6px 1.6px 0;
  transform: rotate(45deg);
}
.inc .bul { width: 9px; flex-shrink: 0; position: relative; align-self: stretch; }
.inc .bul::before {
  content: ''; position: absolute; left: 1px; top: 8px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--faint);
}
details.acc { border-top: 1px solid var(--line-soft); }
details.acc > summary {
  padding: 11px 16px; font-size: 13px; font-weight: 600; color: var(--ink);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
details.acc > summary::-webkit-details-marker { display: none; }
details.acc > summary::after { content: '▾'; color: var(--faint); font-size: 11px; }
details.acc[open] > summary::after { content: '▴'; }
details.acc .acc-body { padding: 0 16px 14px; }

.wa-btns { display: flex; gap: 8px; flex-wrap: wrap; padding: 12px 16px; border-top: 1px solid var(--line-soft); }
.btn {
  padding: 10px 20px; border: none; border-radius: 8px; font-size: 12px; font-weight: 600;
  text-decoration: none; font-family: inherit; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; justify-content: center;
}
.btn-gold { background: var(--brand-deep); color: #fff; }
.btn-gold:hover { background: #35171A; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #1fb959; }
.btn-line { background: #fff; border: 1px solid var(--line); color: var(--body); }
.btn-line:hover { border-color: var(--brand-edge); color: var(--brand-deep); }
.wa-hint { font-size: 10.5px; color: var(--faint); text-align: center; padding: 0 16px 12px; }

.empty {
  padding: 60px 20px; text-align: center; color: var(--faint); font-size: 13px;
}
.empty .ar { font-size: 26px; display: block; margin-bottom: 8px; opacity: .5; }

/* -------------------------------------------------------- generic bits */
.pricecards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pcard {
  padding: 16px 14px; text-align: center; cursor: pointer; font-family: inherit;
  color: var(--ink); background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); position: relative; box-shadow: 0 1px 2px rgba(0, 0, 0, .03);
  width: 100%; min-width: 0; transition: .15s;
}
.pcard:hover { border-color: var(--brand-edge); }
.pcard.on { background: var(--brand-sel); border-color: var(--brand-edge); box-shadow: 0 0 0 1px var(--brand-edge); }
.pcard .nm { font-size: 13px; font-weight: 600; color: #666; margin-bottom: 4px; }
.pcard .pr { font-size: 26px; font-weight: 700; color: var(--brand-deep); }
.pcard .un { font-size: 10px; color: #AAA; margin-top: 2px; }
.tag-pop {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  font-size: 9px; font-weight: 600; padding: 2px 10px; border-radius: 10px;
  background: var(--brand-deep); color: #fff; white-space: nowrap;
}
.tag-rec {
  position: absolute; top: 10px; right: 10px; font-size: 9px; font-weight: 600;
  padding: 2px 10px; border-radius: 10px; background: var(--brand-deep); color: #fff;
}

.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: 11.5px; padding: 6px 11px; border-radius: 7px; background: #fff;
  border: 1px solid var(--line-soft); color: var(--body);
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px; }
.step .n {
  font-size: 11px; font-weight: 700; color: var(--brand-tan); letter-spacing: 1px; margin-bottom: 6px;
}
.step .t { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.step .d { font-size: 11.5px; color: var(--muted); line-height: 1.5; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.tiergrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; }
.gcard .t { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.gcard .d { font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.5; }
.fcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; position: relative; }
.fcard .t { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.fcard .d { font-size: 12px; color: var(--muted); margin-bottom: 10px; }

/* Numbered document lists */
ol.numlist { margin: 0; padding: 0; list-style: none; counter-reset: nl; }
ol.numlist li {
  counter-increment: nl; font-size: 12.5px; color: var(--body);
  padding: 4px 0 4px 26px; position: relative; line-height: 1.5;
}
ol.numlist li::before {
  content: counter(nl, decimal-leading-zero) '.';
  position: absolute; left: 0; top: 4px;
  font-size: 11px; font-weight: 600; color: var(--brand-tan);
  font-variant-numeric: tabular-nums;
}
.grp-t {
  font-size: 12px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase;
  color: var(--brand-deep); margin-bottom: 8px;
  padding-bottom: 7px; border-bottom: 1px solid var(--line-soft);
}

/* Headline figure block */
.tl { text-align: left; }
.tl-v { font-size: 19px; font-weight: 600; color: var(--brand-deep); }
.tl-d { font-size: 12.5px; color: var(--muted); margin-top: 4px; line-height: 1.5; }

.pay-a { font-size: 18px; font-weight: 700; color: var(--brand-deep); margin: 2px 0 4px; }

.smallprint { margin-top: 12px; }
.smallprint p {
  font-size: 11.5px; color: var(--faint); line-height: 1.6; margin: 0 0 4px;
}

/* Document table */
.doc-head, .doc-tr { display: grid; grid-template-columns: 1.5fr 1fr 1.6fr; gap: 14px; padding: 10px 16px; }
.doc-head {
  background: #FAF4EE; border-bottom: 1px solid var(--line);
  font-size: 10.5px; font-weight: 600; letter-spacing: .8px;
  text-transform: uppercase; color: var(--muted);
}
.doc-tr { border-bottom: 1px solid var(--line-hair); font-size: 12.5px; align-items: start; }
.doc-tr:last-child { border-bottom: none; }
.doc-tr .t { color: var(--ink); font-weight: 500; }
.doc-tr .w { color: var(--brand-deep); }
.doc-tr .d { color: var(--muted); line-height: 1.5; }
.doc-tr .dc:empty { display: none; }

.doc-row { padding: 11px 16px; border-bottom: 1px solid var(--line-hair); }
.doc-row:last-child { border-bottom: none; }
.doc-row .t { font-size: 13px; font-weight: 500; color: var(--ink); }
.doc-row .w { font-size: 11px; color: var(--brand-deep); margin-top: 2px; }
.doc-row .d { font-size: 11.5px; color: var(--muted); margin-top: 2px; line-height: 1.5; }

select.sel, input.inp, textarea.inp {
  width: 100%; padding: 11px 13px; font-size: 13.5px; font-family: inherit;
  border: 1px solid var(--line); border-radius: 8px; color: var(--ink);
  background: #fff; outline: none;
}
select.sel:focus, input.inp:focus, textarea.inp:focus { border-color: var(--brand-edge); }

.opt {
  display: flex; align-items: center; gap: 14px; padding: 13px 15px; width: 100%;
  background: #fff; border: 1.5px solid var(--line-soft); border-radius: var(--radius);
  cursor: pointer; font-family: inherit; text-align: left; margin-bottom: 8px; transition: .15s;
}
.opt:hover { border-color: var(--brand-edge); }
.opt.on { background: #FDF6F0; border-color: var(--brand-tan); }
.opt .box {
  width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid var(--line);
  flex-shrink: 0; position: relative;
}
.opt.on .box { background: var(--brand-tan); border-color: var(--brand-tan); }
.opt.on .box::before {
  content: ''; position: absolute; left: 6px; top: 2px;
  width: 4px; height: 9px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.opt .t { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.opt .d { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.opt .p { font-size: 14px; font-weight: 600; color: var(--brand-deep); white-space: nowrap; }

.total-bar {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  background: var(--dark); border-radius: var(--radius); padding: 16px 20px;
  margin-top: 14px; flex-wrap: wrap; position: sticky; bottom: 10px; z-index: 5;
}
.total-bar .l {
  color: #999; font-size: 11px; letter-spacing: .8px; text-transform: uppercase;
}
.total-bar .v { color: #fff; font-size: 24px; font-weight: 700; }
.total-bar .v span { color: var(--brand-tan); }
.warnline { font-size: 11.5px; color: #8d7f76; margin-top: 3px; }
.warnline.alert { color: #E0A24A; }
.warnline:empty { display: none; }

/* ADNOC builder */
.adnoc-hero {
  background: linear-gradient(105deg, #2E1418 0%, #3E1D22 45%, #52272C 100%);
  border-radius: 14px; padding: 22px 24px; position: relative; overflow: hidden;
  margin-bottom: 12px;
}
.adnoc-hero::after {
  content: ''; position: absolute; top: -50px; right: -40px; width: 300px; height: 210px;
  background: radial-gradient(at 70% 25%, rgba(222, 178, 135, .38) 0%, transparent 65%);
  pointer-events: none;
}
.adnoc-hero > * { position: relative; z-index: 1; }
.ah-brand {
  font-size: 10px; letter-spacing: 2.4px; color: #B2A49F; text-transform: uppercase;
}
.ah-title {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 26px;
  font-weight: 600; color: #fff; margin-top: 5px; line-height: 1.15;
}
.ah-sub { font-size: 12.5px; color: #a3928a; margin-top: 4px; }
.infobar {
  background: #FCF6EF; border: 1px solid #EDDCC9; border-radius: var(--radius-sm);
  padding: 11px 14px; font-size: 12.5px; color: #6B4A2E; line-height: 1.55;
  margin-bottom: 16px;
}
h3.sec.step-label {
  font-size: 11.5px; letter-spacing: 1.1px; text-transform: uppercase;
  color: var(--brand-deep); font-weight: 700;
}
h3.sec.step-label .sub {
  display: block; margin-left: 0; margin-top: 4px; font-size: 12px;
  letter-spacing: 0; text-transform: none; color: var(--muted); font-weight: 400;
}
.or-sep {
  text-align: center; font-size: 11.5px; color: var(--faint);
  margin: 14px 0 8px;
}
.bundle-tag {
  text-align: center; font-size: 11px; font-weight: 600; color: var(--brand-deep);
  background: var(--brand-sel); border: 1px solid #E6CFB4;
  border-radius: 20px; padding: 4px 12px; width: fit-content; margin: 0 auto 8px;
}

.dest {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; width: 100%;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  cursor: pointer; font-family: inherit; text-align: left; transition: .15s;
  margin-bottom: 6px;
}
.dest:hover { border-color: var(--brand-edge); }
.dest.on { background: var(--brand-sel); border-color: var(--brand-edge); }
.dest .nm { font-size: 13px; font-weight: 600; color: var(--ink); flex: 1; min-width: 0; }
.dest .cnt { font-size: 10.5px; color: var(--faint); white-space: nowrap; }
.destgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.allback {
  background: var(--brand-sel); border: 1px solid #E6CFB4; border-radius: 7px;
  color: var(--brand-deep); font-family: inherit; font-size: 13px; font-weight: 500;
  padding: 8px 14px; margin-bottom: 10px; cursor: pointer;
}
/* The visa list scrolls independently beside a long detail panel. */
.twocol.visa .leftcol { max-height: 620px; overflow-y: auto; padding-right: 4px; }
.fee-head2 { display: flex; justify-content: space-between; gap: 12px; }
.fee-row.on { background: var(--brand-sel); }

.footer {
  margin-top: 26px; padding: 22px 0 14px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer .fl { font-size: 12px; color: var(--faint); line-height: 1.7; }
.footer .fl b { color: var(--body); font-weight: 600; }
.footer a { color: var(--brand-deep); text-decoration: none; }

/* ------------------------------------------------------------ responsive */

/* Tablet — narrower side column, denser grids before the full stack. */
@media (max-width: 1024px) and (min-width: 768px) {
  .leftcol { width: 280px; }
  .grid3 { grid-template-columns: 1fr 1fr; }
  .destgrid { grid-template-columns: repeat(3, 1fr); }
  .pkggrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .dsk { display: none !important; }
  .wrap { padding: 12px 13px; }
  .twocol { flex-direction: column; }
  .leftcol { width: 100%; }
  .rightcol { width: 100%; }
  .twocol.visa .leftcol { max-height: none; overflow: visible; padding-right: 0; }
  /* Phone: the destination detail replaces the list until "All Destinations". */
  .twocol.visa.showdetail .leftcol { display: none; }
  .homegrid { grid-template-columns: 1fr; }
  .pkggrid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .pricecards { grid-template-columns: 1fr; }
  .incgrid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .grid2, .grid3, .tiergrid { grid-template-columns: 1fr 1fr; }
  .destgrid { grid-template-columns: 1fr 1fr; }
  .hdr-banner { max-height: 60px; }
  .hdr-banner-fallback { height: 66px; padding: 0 16px; }
  .hdr-banner-fallback .bn { font-size: 20px; }
  .fz-hdr { flex-direction: column; align-items: flex-start; }
  .fz-body, .fz-stats { padding-left: 14px; padding-right: 14px; }
  .wa-btns { flex-direction: column; gap: 6px; }
  .wa-btns .btn { width: 100%; }
  .cta-bar { flex-direction: column; align-items: flex-start; padding: 18px 16px; }
  .cta-bar .cta-btn { width: 100%; text-align: center; }
  .total-bar { flex-direction: column; align-items: flex-start; }
  .total-bar .cta-btn { width: 100%; text-align: center; }
  /* Long fee/detail labels need to wrap rather than collide with the amount. */
  .fee-row { flex-wrap: wrap; row-gap: 2px; }
  .fee-row span:first-child { flex: 1 1 60%; min-width: 0; }
  .detail-hdr { gap: 8px; }
  .opt { gap: 10px; padding: 12px 13px; flex-wrap: wrap; }
  .opt .p { margin-left: auto; }
  .footer { gap: 12px; }
  .footer .fl { flex: 1 1 100%; }
}

/* Small phones — single column everywhere, nothing crushed. */
@media (max-width: 430px) {
  .grid2, .grid3, .tiergrid { grid-template-columns: 1fr; }
  .pkggrid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .destgrid { grid-template-columns: 1fr 1fr; }
  .wrap { padding: 11px; }
  .card-pad { padding: 14px 15px; }
  .fz-hdr, .fz-body { padding-left: 13px; padding-right: 13px; }
}

@media (min-width: 768px) { .mob { display: none !important; } }
