/* ============================================================================
   Finex Visa — Design System  (RTL Persian, zero external dependencies)
   Palette: the owner's own logo — deep blue #022D71 + cyan #1BBEC3
   (was navy + warm gold until 2026-08-09; see the token block below)
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------- */
:root {
  /* Brand — remapped 2026-08-09 to the owner's own logo (finexvisa.jpg).
     Sampled from the logo: deep blue #022D71, cyan #1BBEC3.
     Token NAMES are deliberately unchanged so every rule that already says
     var(--navy-700) / var(--gold-500) keeps working; only the values moved.
     Contrast on white was measured, not assumed — see the comments. */
  --navy-900: #01193F;
  --navy-800: #01214F;
  --navy-700: #022D71;   /* primary — the logo blue         12.99:1 AA */
  --navy-600: #063A8C;
  --navy-500: #1155B8;   /* action / links                   6.96:1 AA */
  --navy-400: #4A8BE0;
  --gold-600: #0E7A80;   /* accent TEXT — dark cyan          5.10:1 AA
                            (the old gold #B08A2E was 3.22:1 and failed) */
  --gold-500: #1BBEC3;   /* accent — the logo cyan; graphics/borders only */
  --gold-400: #58D3D7;
  --gold-100: #DFF5F6;
  --green-600: #2E7D5B;
  --red-600:  #C0392B;

  /* Messaging-platform colours. These are NOT ours to restyle — a chat button
     is recognised by its colour before it is read — so the background stays the
     official one and the LABEL carries the contrast instead. Measured, not
     assumed: white on either fails (3.02:1 / 1.98:1); these inks pass. */
  --tg-blue:  #229ED9;
  --tg-ink:   #04263F;   /* on --tg-blue                        5.14:1 AA */
  --wa-green: #25D366;
  --wa-ink:   #052E17;   /* on --wa-green                       7.51:1 AA */

  /* Neutrals */
  --ink-900: #16222E;
  --ink-700: #33434F;
  --ink-500: #5A6B7B;
  --ink-300: #9AA8B4;
  --line:    #E3E9F0;
  --line-2:  #EEF2F7;
  --bg:      #FFFFFF;
  --surface: #F7F9FC;
  --cream:   #F1FAFB;    /* was a warm cream for gold; now cool, for cyan */
  --navy-tint: #E8EFFA;

  /* Typography */
  --font-fa: "Vazirmatn", "Vazir", "Sahel", "Noto Sans Arabic", "Noto Naskh Arabic", "Tahoma", "Segoe UI", system-ui, -apple-system, sans-serif;
  --fs-hero: clamp(1.9rem, 4.2vw, 3.1rem);
  --fs-h1:   clamp(1.6rem, 3.2vw, 2.4rem);
  --fs-h2:   clamp(1.35rem, 2.4vw, 1.85rem);
  --fs-h3:   1.2rem;
  --fs-body: 1.0625rem;
  --fs-sm:   0.9375rem;
  --lh:      1.9;           /* generous line-height for Persian readability */

  /* Structure */
  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 9px;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --shadow-sm: 0 1px 3px rgba(16,34,52,.06), 0 1px 2px rgba(16,34,52,.04);
  --shadow:    0 6px 24px rgba(15,46,76,.09);
  --shadow-lg: 0 16px 48px rgba(15,46,76,.16);
  --trans: .22s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset / base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-fa);
  font-size: var(--fs-body);
  line-height: var(--lh);
  color: var(--ink-900);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; vertical-align: middle; }
/* Inline icons: a sane default size so an unsized SVG never renders huge. */
svg { width: 1.15em; height: 1.15em; vertical-align: -0.18em; flex-shrink: 0; }
.icon svg { width: 55%; height: 55%; }   /* badge wrappers scale their icon */
a { color: var(--navy-500); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--navy-700); }
h1,h2,h3,h4 { line-height: 1.4; color: var(--navy-800); font-weight: 800; margin: 0 0 .6em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p  { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-inline-start: 1.4em; }
li { margin-bottom: .45em; }
strong { font-weight: 800; color: var(--navy-800); }
:focus-visible { outline: 3px solid var(--navy-400); outline-offset: 2px; border-radius: 4px; }

/* ---- Layout helpers ------------------------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section { padding-block: clamp(2.6rem, 6vw, 5rem); }
.section--surface { background: var(--surface); }
.section--cream   { background: var(--cream); }
.section--navy    { background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); color: #fff; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.center { text-align: center; }
.grid { display: grid; gap: var(--gap); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px){ .cols-4{grid-template-columns:repeat(2,1fr)} .cols-3{grid-template-columns:repeat(2,1fr)} }
@media (max-width: 620px){ .cols-2,.cols-3,.cols-4{grid-template-columns:1fr} }

.section-head { max-width: 760px; margin-inline: auto; margin-bottom: clamp(1.6rem,3vw,2.6rem); }
.section-head.center { text-align: center; }
.eyebrow { display:inline-block; font-size: var(--fs-sm); font-weight:800; color: var(--gold-600);
  letter-spacing:.02em; margin-bottom:.6rem; }
.section-head p { color: var(--ink-500); }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: inherit; font-size: var(--fs-body); font-weight: 800; cursor: pointer;
  padding: .8em 1.6em; border-radius: 999px; border: 2px solid transparent;
  transition: transform var(--trans), background var(--trans), box-shadow var(--trans);
  line-height: 1; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--gold  { background: var(--gold-500); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-400); color: var(--navy-900); box-shadow: var(--shadow); }
.btn--navy  { background: var(--navy-700); color: #fff; }
.btn--navy:hover { background: var(--navy-600); color:#fff; }
.btn--ghost { background: transparent; color: var(--navy-700); border-color: var(--navy-700); }
.btn--ghost:hover { background: var(--navy-700); color: #fff; }
.btn--light { background: #fff; color: var(--navy-700); }
.btn--light:hover { background: var(--gold-100); color: var(--navy-800); }
/* WhatsApp keeps its own green — a chat button people recognise by colour
   before they read it — but NOT with white text: #25D366 against white measures
   1.98:1 and fails every contrast floor. Dark ink on the same green is 7.51:1
   and still unmistakably WhatsApp. Same pair is reused by .float-btn--wa so the
   CTA and the floating button read as one channel. */
.btn--wa { background: var(--wa-green); color: var(--wa-ink); }
.btn--wa:hover { background: #1FBE5B; color: var(--wa-ink); }
.btn--lg { padding: 1em 2em; font-size: 1.1rem; }
.btn--block { display:flex; width:100%; }

/* ---- Header / navigation ------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 70px; }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; color: var(--navy-800); font-size: 1.3rem; }
.brand:hover { color: var(--navy-800); }
.brand .mark { width: 47px; height: 38px; flex: 0 0 auto; }  /* logo aspect 1.232:1 */
.brand small { display:block; font-size:.66rem; font-weight:600; color: var(--gold-600); letter-spacing:.06em; margin-top:2px; }
.nav-links { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block; padding: .55rem .8rem; border-radius: var(--radius-sm);
  color: var(--ink-700); font-weight: 700; font-size: var(--fs-sm); white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--navy-700); background: var(--navy-tint); }
.nav-cta { display: flex; align-items: center; gap: .5rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem;
  color: var(--navy-800); }
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 900px){
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 1rem; gap: .2rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-140%); transition: transform var(--trans);
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: .8rem 1rem; font-size: 1rem; }
  .nav-cta .btn--consult-desktop { display: none; }
}

/* ---- Hero ---------------------------------------------------------------- */
.hero { position: relative; background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 55%, var(--navy-600) 100%);
  color: #fff; overflow: hidden; }
.hero::after { content:""; position:absolute; inset-inline-start:-10%; top:-30%; width:60%; height:160%;
  background: radial-gradient(closest-side, rgba(201,162,75,.18), transparent 70%); pointer-events:none; }
.hero .container { position: relative; z-index: 1; padding-block: clamp(3rem, 8vw, 6rem); }
.hero h1 { font-size: var(--fs-hero); color:#fff; max-width: 18ch; }
.hero .sub { font-size: clamp(1.05rem,2vw,1.3rem); color: #D5E2F0; max-width: 52ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-badges { display:flex; flex-wrap:wrap; gap:1.2rem; margin-top:2.2rem; color:#C6D6E8; font-size: var(--fs-sm); }
.hero-badges span { display:flex; align-items:center; gap:.4rem; }
.hero-badges svg { width:18px; height:18px; color: var(--gold-400); }

/* ---- Cards --------------------------------------------------------------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-500); }
.card .icon { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy-tint); color: var(--navy-700); margin-bottom: 1rem; }
.card .icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-500); font-size: var(--fs-sm); margin-bottom: 1rem; }
.card .card-link { margin-top: auto; font-weight: 800; color: var(--navy-500); display: inline-flex; align-items:center; gap:.35rem; }
.card .card-link::after { content: "←"; transition: transform var(--trans); }
.card:hover .card-link::after { transform: translateX(-4px); }

/* Value / feature small cards */
.value-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding:1.3rem;
  display:flex; gap:.9rem; align-items:flex-start; }
.value-card .icon { width:44px;height:44px;flex:0 0 auto; background: var(--gold-100); color: var(--gold-600); border-radius:10px; display:grid;place-items:center; }
.value-card .icon svg{width:24px;height:24px}
.value-card h4 { margin:0 0 .25rem; color: var(--navy-800); font-size:1.05rem; }
.value-card p { margin:0; color: var(--ink-500); font-size: var(--fs-sm); }

/* Country card */
.country-card { display:flex; flex-direction:column; }
.country-card .flag { font-size: 2rem; line-height:1; margin-bottom:.6rem; }
.country-card .meta { font-size:.8rem; color: var(--gold-600); font-weight:700; }

/* ---- Card catalogue (bank cards + gift cards) ---------------------------- */
/* Picture-first: the artwork carries the product name, so the tile stays
   scannable at a glance and the text below it is only a short qualifier. */
.card-grid { display:grid; gap: clamp(.9rem, 2vw, 1.5rem); grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px){ .card-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px){ .card-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 430px){ .card-grid{ grid-template-columns: 1fr; } }

.ctile { background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  overflow:hidden; display:flex; flex-direction:column;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans); }
.ctile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-500); }
/* display:flex above would otherwise beat the [hidden] attribute the filter sets */
.ctile[hidden] { display:none; }
.ctile-art { display:block; background: var(--surface); line-height:0; }
.ctile-art img { display:block; width:100%; height:auto; aspect-ratio: 320 / 200; }
.ctile-body { padding: .95rem 1.05rem 1.15rem; display:flex; flex-direction:column;
  align-items:flex-start; gap:.45rem; flex:1; }
.ctile-body h3 { margin:0; font-size: 1.02rem; line-height:1.6; }
.ctile-body p { margin:0; font-size:.85rem; color: var(--ink-500); line-height:1.75; }
.ctile-cta { margin-top:auto; padding-top:.35rem; font-weight:800; font-size:.9rem;
  color: var(--navy-500); display:inline-flex; align-items:center; gap:.3rem; }
.ctile-cta::after { content:"←"; transition: transform var(--trans); }
.ctile:hover .ctile-cta::after { transform: translateX(-4px); }
.chip { display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.02em;
  color: var(--navy-600); background: var(--navy-tint); border-radius:999px; padding:.2rem .65rem; }
.mini-list { list-style:none; margin:.1rem 0 0; padding:0; font-size:.82rem; color: var(--ink-500); }
.mini-list li { position:relative; padding-inline-start:1.1rem; line-height:1.9; }
.mini-list li::before { content:"•"; position:absolute; inset-inline-start:0; color: var(--gold-600); font-weight:800; }

/* Compact picture-only strip (home page + service-page teasers) */
.card-strip { display:grid; gap: clamp(.7rem, 1.6vw, 1.1rem); grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1080px){ .card-strip{ grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 780px){ .card-strip{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 430px){ .card-strip{ grid-template-columns: repeat(2, 1fr); } }
.cthumb { display:block; text-align:center; color: var(--ink-700); }
.cthumb img { display:block; width:100%; height:auto; aspect-ratio: 320 / 200;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans); }
.cthumb:hover { color: var(--navy-700); }
.cthumb:hover img { transform: translateY(-3px); box-shadow: var(--shadow); }
.cthumb span { display:block; margin-top:.5rem; font-size:.8rem; font-weight:700; line-height:1.6; }

/* Category filter chips — without JS every tile simply stays visible */
.filters { display:flex; flex-wrap:wrap; gap:.5rem; justify-content:center; margin-bottom: 1.9rem; }
.filter-btn { font-family:inherit; font-size:.92rem; font-weight:700; cursor:pointer;
  border:1px solid var(--line); background:#fff; color: var(--ink-700);
  border-radius:999px; padding:.5rem 1.15rem; transition: all var(--trans); }
.filter-btn:hover { border-color: var(--gold-500); color: var(--navy-700); }
.filter-btn[aria-pressed="true"] { background: var(--navy-700); border-color: var(--navy-700); color:#fff; }
.empty-note { text-align:center; color: var(--ink-500); padding: 2rem 0 0; }

/* ---- CTA band ------------------------------------------------------------ */
.cta-band { background: linear-gradient(135deg, var(--navy-700), var(--navy-600)); color:#fff;
  border-radius: var(--radius); padding: clamp(1.8rem,4vw,3rem); text-align:center; box-shadow: var(--shadow); }
.cta-band h2 { color:#fff; }
.cta-band p { color:#CFE0F0; max-width: 56ch; margin-inline:auto; }
.cta-actions { display:flex; gap:.8rem; justify-content:center; flex-wrap:wrap; margin-top:1.4rem; }

/* ---- Process / steps ----------------------------------------------------- */
.steps { counter-reset: step; display:grid; gap: 1.1rem; }
.step { position: relative; background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; padding-inline-start: 4.2rem; }
.step::before { counter-increment: step; content: counter(step);
  position:absolute; inset-inline-start:1.1rem; top:1.2rem; width:44px; height:44px; border-radius:50%;
  background: var(--gold-500); color: var(--navy-900); font-weight:800; font-size:1.2rem;
  display:grid; place-items:center; }
.step h3 { margin-bottom:.3rem; }
.step p { margin:0; color: var(--ink-500); }

/* ---- FAQ accordion ------------------------------------------------------- */
.faq-list { max-width: 860px; margin-inline: auto; }
.faq-item { border:1px solid var(--line); border-radius: var(--radius-sm); margin-bottom:.7rem; background:#fff; overflow:hidden; }
.faq-q { width:100%; text-align:start; background:none; border:0; cursor:pointer; font-family:inherit;
  font-size:1.02rem; font-weight:700; color: var(--navy-800); padding: 1.05rem 1.2rem;
  display:flex; justify-content:space-between; align-items:center; gap:1rem; }
.faq-q:hover { background: var(--surface); }
.faq-q .chev { flex:0 0 auto; transition: transform var(--trans); color: var(--navy-500); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height:0; overflow:hidden; transition: max-height var(--trans); }
.faq-a-inner { padding: 0 1.2rem 1.1rem; color: var(--ink-700); }
.faq-item.open .faq-a { max-height: 500px; }

/* ---- Testimonials -------------------------------------------------------- */
.quote { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 1.7rem;
  box-shadow: var(--shadow-sm); position:relative; }
.quote::before { content:"”"; position:absolute; top:.2rem; inset-inline-end:1.1rem; font-size:3.5rem;
  color: var(--gold-500); opacity:.3; line-height:1; font-family: Georgia, serif; }
.quote p { color: var(--ink-700); font-size:1.05rem; }
.quote .author { color: var(--navy-700); font-weight:800; font-size: var(--fs-sm); margin-top:.6rem; }
.quote .stars { color: var(--gold-600); letter-spacing:2px; margin-bottom:.6rem; }

/* ---- Article / prose ----------------------------------------------------- */
.prose { max-width: 760px; margin-inline:auto; }
.prose h2 { margin-top: 2rem; padding-bottom:.4rem; border-bottom:2px solid var(--line-2); }
.prose h3 { margin-top: 1.6rem; color: var(--navy-700); }
.prose ul li::marker { color: var(--gold-600); }
.prose blockquote { margin: 1.4rem 0; padding: 1rem 1.3rem; background: var(--cream);
  border-inline-start: 4px solid var(--gold-500); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink-700); }
.prose .callout { background: var(--navy-tint); border:1px solid var(--navy-400); border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem; margin: 1.4rem 0; }
.prose .callout strong { color: var(--navy-700); }
.prose table { width:100%; border-collapse:collapse; margin:0; font-size: var(--fs-sm); }
.prose th, .prose td { border:1px solid var(--line); padding:.7rem .9rem; text-align:start; vertical-align:top; }
.prose thead th { background: var(--navy-tint); color: var(--navy-800); font-weight:800; }
.prose tbody tr:nth-child(even) { background: var(--surface); }
.table-wrap { overflow-x:auto; margin:1.4rem 0; border-radius: var(--radius-sm); }
.article-meta { display:flex; flex-wrap:wrap; gap:1rem; color: var(--ink-500); font-size: var(--fs-sm); margin-bottom:1.6rem; }
.tag { display:inline-block; background: var(--gold-100); color: var(--gold-600); font-weight:800;
  font-size:.8rem; padding:.25rem .7rem; border-radius:999px; }

/* ---- Detail lists (services / countries) --------------------------------- */
.checklist { list-style:none; padding:0; }
.checklist li { position:relative; padding-inline-start: 1.9rem; margin-bottom:.7rem; color: var(--ink-700); }
.checklist li::before { content:"✓"; position:absolute; inset-inline-start:0; top:0; color: var(--green-600); font-weight:800; }

/* ---- Breadcrumb ---------------------------------------------------------- */
.crumb { font-size: var(--fs-sm); color: var(--ink-500); margin-bottom:1rem; }
.crumb a { color: var(--ink-500); }
.crumb a:hover { color: var(--navy-700); }
.crumb span { color: var(--gold-600); }

/* ---- Contact / forms ----------------------------------------------------- */
.form-grid { display:grid; gap:1.1rem; }
.field label { display:block; font-weight:700; color: var(--navy-800); margin-bottom:.4rem; font-size: var(--fs-sm); }
.field input, .field select, .field textarea {
  width:100%; font-family:inherit; font-size: var(--fs-body); color: var(--ink-900);
  padding:.8rem 1rem; border:1.5px solid var(--line); border-radius: var(--radius-sm); background:#fff;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color: var(--navy-500); box-shadow: 0 0 0 3px rgba(30,111,184,.15); }
.field textarea { min-height: 140px; resize: vertical; }
.field .req { color: var(--red-600); }
.form-note { font-size:.85rem; color: var(--ink-500); }
.form-status { padding: .9rem 1.1rem; border-radius: var(--radius-sm); font-weight:700; display:none; }
.form-status.show { display:block; }
.form-status.ok  { background:#E9F6EF; color: var(--green-600); border:1px solid var(--green-600); }
.form-status.err { background:#FBEAE8; color: var(--red-600); border:1px solid var(--red-600); }
/* The three chat/call CTAs above the contact details. They wrap on a phone
   rather than shrinking, so no label is ever truncated. */
.contact-actions { display:flex; flex-wrap:wrap; gap:.6rem; margin-top:.9rem; }
/* Office cards. The address is the point of the card, so it gets body size
   rather than the muted small text a card <p> normally takes. */
.branch-card h3 { display:flex; align-items:center; gap:.5rem; }
.branch-card h3 svg { width:20px; height:20px; color: var(--gold-600); flex:0 0 auto; }
.branch-address { font-size: var(--fs-body); line-height: var(--lh); }
.branch-tel { font-weight:700; }
.contact-info { display:grid; gap:.9rem; }
.contact-info .row { display:flex; gap:.8rem; align-items:flex-start; }
.contact-info .row svg { width:22px; height:22px; color: var(--gold-600); flex:0 0 auto; margin-top:3px; }
.contact-info .row b { color: var(--navy-800); display:block; }
.contact-info .row span { color: var(--ink-500); font-size: var(--fs-sm); }
.honeypot { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #C6D3E0; padding-block: 3rem 1.5rem; }
.site-footer h4 { color:#fff; font-size:1rem; margin-bottom:1rem; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2rem; }
@media (max-width:900px){ .footer-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px){ .footer-grid{ grid-template-columns: 1fr; } }
.site-footer a { color:#C6D3E0; font-size: var(--fs-sm); }
.site-footer a:hover { color: var(--gold-400); }
.footer-links { list-style:none; padding:0; margin:0; }
.footer-links li { margin-bottom:.55rem; }
/* The contact column now carries two multi-line office addresses. Lay each row
   out as icon + block so the second line of an address aligns with the first
   instead of wrapping back under the icon. */
.footer-contact li { display:flex; gap:.5rem; align-items:flex-start;
  font-size: var(--fs-sm); line-height:1.8; }
.footer-contact li svg { width:17px; height:17px; margin-top:.45rem;
  color: var(--gold-400); flex:0 0 auto; }
.footer-contact strong { color:#fff; font-weight:700; }
.footer-brand .brand { color:#fff; }
/* The mark has no background tile of its own, so on the dark footer its deep-blue
   F would all but vanish. Flip it to white here; the cyan tick still reads. */
.footer-brand .mark { --mark-ink: #FFFFFF; }
.footer-brand p { color:#93A6B8; font-size: var(--fs-sm); }
/* `strong` is given a dark brand colour globally (see the base rules), which makes
   it invisible on any dark ground — «فینکس ویزا» in the footer measured 1.10:1.
   Re-light it on every dark container, including the two that carry no <strong>
   today, so the same bug cannot reappear when copy changes. */
.site-footer strong, .section--navy strong, .hero strong { color: #FFFFFF; }
.social { display:flex; gap:.6rem; margin-top:1rem; }
.social a { width:40px; height:40px; border-radius:10px; background: rgba(255,255,255,.06);
  display:grid; place-items:center; color:#C6D3E0; }
.social a:hover { background: var(--gold-500); color: var(--navy-900); }
.social svg { width:20px; height:20px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); margin-top:2rem; padding-top:1.3rem;
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:.6rem; font-size:.85rem; color:#8598AB; }
.trust-badges { display:flex; gap:.8rem; flex-wrap:wrap; margin-top:.8rem; }
.trust-badges span { font-size:.78rem; background: rgba(255,255,255,.06); padding:.35rem .7rem; border-radius:8px; }

/* ---- Floating Telegram button ------------------------------------------- */
/* Floating quick-contact buttons. A stack, not a single button, because there
   are now two live chat channels (Telegram, WhatsApp). Each keeps its own
   platform colour — that is what makes it recognisable at a glance — and both
   collapse to icon-only on a phone so they never cover the content. */
.float-stack { position: fixed; inset-block-end: 20px; inset-inline-end: 20px; z-index: 90;
  display:flex; flex-direction:column; align-items:flex-end; gap:.6rem; }
.float-btn { display:flex; align-items:center; gap:.5rem; font-weight:800;
  padding:.7rem 1.1rem; border-radius:999px; box-shadow: var(--shadow-lg); transition: transform var(--trans); }
.float-btn:hover { transform: translateY(-3px); }
.float-btn svg { width:22px; height:22px; }
/* Each keeps its official platform colour, with a DARK label rather than white:
   white on Telegram blue measures 3.02:1 and on WhatsApp green 1.98:1 — both
   below the 4.5:1 floor. Dark ink on the same two colours measures 5.14:1 and
   7.51:1, so the buttons stay instantly recognisable and become readable. */
.float-btn--tg { background: var(--tg-blue); color: var(--tg-ink); }
.float-btn--tg:hover { color: var(--tg-ink); }
.float-btn--wa { background: var(--wa-green); color: var(--wa-ink); }
.float-btn--wa:hover { color: var(--wa-ink); }
@media (max-width:560px){ .float-btn span { display:none; } .float-btn { padding:.8rem; } }

/* ---- Utilities ----------------------------------------------------------- */
.lead { font-size: 1.2rem; color: var(--ink-700); }
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.pill { display:inline-block; background: var(--navy-tint); color: var(--navy-700); font-weight:700;
  font-size:.8rem; padding:.3rem .8rem; border-radius:999px; }
.divider { height:1px; background: var(--line); border:0; margin-block: 2rem; }
.text-muted { color: var(--ink-500); }
.stat { text-align:center; }
.stat .num { font-size: 2.2rem; font-weight:800; color: var(--gold-600); }
.stat .lbl { color: var(--ink-500); font-size: var(--fs-sm); }
.skip-link { position:absolute; inset-inline-start:-9999px; background:#fff; padding:.6rem 1rem; z-index:200; }
.skip-link:focus { inset-inline-start: 1rem; top:.5rem; }

@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
