/* ==========================================================================
   MAFF — Maldives Association of Freight Forwarders
   Design system & global styles
   Theme: Professional • Maritime • Modern • Trustworthy
   ========================================================================== */

:root {
  /* Brand palette */
  --navy:      #0B3B57;   /* Primary Blue — trust, professionalism, trade */
  --navy-900:  #072839;
  --navy-700:  #0F4761;
  --teal:      #159A9C;   /* Ocean Teal — Maldives & maritime logistics */
  --teal-600:  #0E8385;
  --teal-050:  #E7F4F4;
  --gold:      #C8A24B;   /* Accent Gold — excellence & prestige */
  --gold-600:  #AE882F;

  /* Neutrals */
  --ink:       #14232E;
  --slate:     #55697A;
  --slate-300: #8A9BA8;
  --mist:      #F4F8FA;
  --mist-200:  #ECF2F5;
  --line:      #E1EAEF;
  --white:     #FFFFFF;

  /* Type */
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Roboto, Arial, sans-serif;

  /* Structure */
  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(11,59,87,.06), 0 2px 8px rgba(11,59,87,.06);
  --shadow-md: 0 6px 24px rgba(11,59,87,.10);
  --shadow-lg: 0 18px 48px rgba(11,59,87,.16);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--teal-600); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--navy); }
h1, h2, h3, h4 { line-height: 1.18; color: var(--navy); font-weight: 700; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.15rem); letter-spacing: -.01em; }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.15rem; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 76px 0; }
.section--tight { padding: 54px 0; }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy); color: #DCE7EE; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-600); margin-bottom: .8rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--slate); font-size: 1.06rem; }
.lead { font-size: 1.15rem; color: var(--slate); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: .96rem; font-family: inherit;
  padding: .72rem 1.35rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .18s ease; white-space: nowrap;
}
.btn--primary { background: var(--gold); color: var(--navy-900); }
.btn--primary:hover { background: var(--gold-600); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-600); color:#fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal-600); }
.btn--onnavy { background: rgba(255,255,255,.08); color:#fff; border-color: rgba(255,255,255,.28); }
.btn--onnavy:hover { background:#fff; color: var(--navy); }
.btn--lg { padding: .9rem 1.7rem; font-size: 1.02rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 18px;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 12px; margin-inline-end: auto; }
.brand__mark { width: auto; height: 42px; flex: none; }
.footer__brand .brand__mark { height: 34px; }
.brand__text { display: block; line-height: 1.05; }
.brand__name { font-weight: 800; color: var(--navy); font-size: 1.18rem; letter-spacing: .01em; }
.brand__sub { display: block; width: 168px; font-size: .63rem; line-height: 1.25; letter-spacing: .04em; text-transform: uppercase; color: var(--slate-300); font-weight: 600; margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: block; padding: .55rem .7rem; border-radius: 8px;
  color: var(--ink); font-weight: 500; font-size: .95rem;
}
.nav__links a:hover { background: var(--mist); color: var(--navy); }
.nav__links a.active { color: var(--teal-600); font-weight: 600; }
.nav__actions { display: flex; align-items: center; gap: 12px; }

.lang {
  display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; font-size: .8rem;
}
.lang a, .lang button {
  border: 0; background: transparent; padding: .35rem .7rem; cursor: pointer; font-family: inherit;
  color: var(--slate); font-weight: 600; text-decoration: none; display: inline-block; line-height: 1.4;
}
.lang a.active, .lang button.active { background: var(--navy); color: #fff; }
.lang a[lang="dv"], .lang button[lang="dv"] { font-family: "Noto Sans Thaana", "MV Faseyha", sans-serif; }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display:block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1200px 500px at 80% -10%, #12557a 0%, var(--navy) 45%, var(--navy-900) 100%);
  color: #fff;
}
.hero__inner { position: relative; z-index: 2; padding: 92px 0 150px; max-width: 720px; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--gold); }
.hero p { color: #C9DAE6; font-size: 1.18rem; max-width: 600px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__badge {
  display:inline-flex; align-items:center; gap:.5rem; font-size:.82rem; font-weight:600;
  color:#Bfe0e6; background: rgba(21,154,156,.18); border:1px solid rgba(21,154,156,.4);
  padding:.4rem .85rem; border-radius:999px; margin-bottom: 22px;
}
.hero__waves { position: absolute; left:0; right:0; bottom: -1px; z-index: 1; width: 100%; }
.hero__waves svg { width: 100%; height: auto; display:block; }

/* Stats strip overlapping hero */
.stats {
  position: relative; z-index: 5; margin-top: -70px;
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
}
.stat { background: #fff; padding: 26px 22px; text-align: center; }
.stat__num { font-size: 2.3rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.stat__num .plus { color: var(--gold); }
.stat__label { font-size: .82rem; color: var(--slate); font-weight: 600; letter-spacing: .02em; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: var(--teal-050); color: var(--teal-600); margin-bottom: 16px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--slate); margin-bottom: 0; font-size: .97rem; }

/* Mission / vision split */
.mv { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.mv__panel { border-radius: var(--radius); padding: 34px; color: #fff; position: relative; overflow: hidden; }
.mv__panel h3 { color:#fff; font-size: 1.35rem; }
.mv__panel p { margin-bottom: 0; }
.mv__panel--vision { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-600) 100%); }
.mv__panel--vision p { color: #E6F6F6; }
.mv__panel--mission { background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy) 100%); }
.mv__panel--mission p { color: #D5E3EC; }
.mv__panel .mv__tag { font-size:.75rem; letter-spacing:.14em; text-transform:uppercase; opacity:.8; font-weight:700; }

/* News */
.news-card { display:flex; flex-direction: column; overflow: hidden; padding: 0; }
.news-card__media { height: 168px; background: linear-gradient(135deg, var(--navy-700), var(--teal-600)); position: relative; }
.news-card__media svg { position:absolute; inset:0; width:100%; height:100%; opacity:.5; }
.news-card__tag {
  position:absolute; top:14px; left:14px; background: rgba(255,255,255,.92); color: var(--navy);
  font-size:.72rem; font-weight:700; padding:.28rem .7rem; border-radius: 999px; letter-spacing:.03em;
}
.news-card__body { padding: 22px 24px 26px; display:flex; flex-direction:column; flex:1; }
.news-card__date { font-size:.78rem; color: var(--slate-300); font-weight:600; margin-bottom:.5rem; }
.news-card h3 { font-size: 1.1rem; }
.news-card p { color: var(--slate); font-size:.94rem; }
.news-card__more { margin-top:auto; font-weight:600; font-size:.9rem; color: var(--teal-600); }

/* Events list */
.event { display:flex; gap: 20px; align-items:center; padding: 20px; border:1px solid var(--line); border-radius: var(--radius); background:#fff; transition:.2s; }
.event:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.event__date {
  flex:none; width: 74px; text-align:center; background: var(--navy); color:#fff; border-radius: 10px; padding: 10px 6px;
}
.event__date .d { font-size: 1.5rem; font-weight: 800; line-height:1; }
.event__date .m { font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; opacity:.85; }
.event__body { flex:1; }
.event__body h3 { font-size: 1.05rem; margin-bottom:.25rem; }
.event__meta { font-size:.85rem; color: var(--slate); display:flex; gap: 16px; flex-wrap:wrap; }
.event__meta span { display:inline-flex; align-items:center; gap:.35rem; }

/* Quick links */
.quicklinks { display:grid; grid-template-columns: repeat(4,1fr); gap:16px; }
.quicklink {
  display:flex; align-items:center; gap:12px; padding:18px 20px; border-radius: var(--radius-sm);
  background:#fff; border:1px solid var(--line); color:var(--navy); font-weight:600;
}
.quicklink:hover { background: var(--navy); color:#fff; border-color: var(--navy); }
.quicklink svg { width:22px; height:22px; flex:none; }

/* Objectives / feature list */
.feature { display:flex; gap:16px; }
.feature__num { flex:none; width:40px; height:40px; border-radius:10px; background: var(--gold); color: var(--navy-900); font-weight:800; display:grid; place-items:center; }
.feature h3 { font-size:1.08rem; margin-bottom:.25rem; }
.feature p { color: var(--slate); margin:0; font-size:.96rem; }

/* Partners logos */
.partners { display:flex; flex-wrap:wrap; gap: 14px; justify-content:center; }
.partner {
  border:1px dashed var(--line); border-radius: 10px; padding: 16px 26px; color: var(--slate);
  font-weight:700; letter-spacing:.03em; background:#fff;
}

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--navy) 0%, var(--teal-600) 130%); color:#fff; border-radius: 20px; padding: 54px; text-align:center; position:relative; overflow:hidden; }
.cta-band h2 { color:#fff; }
.cta-band p { color:#CDE0EA; max-width: 560px; margin-inline:auto; }
.cta-band__actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:24px; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: linear-gradient(120deg, var(--navy-900), var(--navy)); color:#fff; padding: 60px 0 66px; position:relative; overflow:hidden; }
.page-hero h1 { color:#fff; margin-bottom:.4rem; }
.page-hero p { color:#Bcd4e2; max-width: 620px; margin:0; }
.breadcrumb { font-size:.82rem; color:#7FA6BC; margin-bottom: 18px; }
.breadcrumb a { color:#Aac6d7; }
.page-hero__deco { position:absolute; right:-40px; bottom:-40px; width:320px; opacity:.14; }

/* ---------- Content prose ---------- */
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.4rem; color: var(--teal-600); }
.prose p, .prose li { color: var(--slate); }
.prose strong { color: var(--ink); }

/* Value pills */
.pills { display:flex; flex-wrap:wrap; gap:10px; }
.pill { background: var(--teal-050); color: var(--teal-600); font-weight:600; font-size:.88rem; padding:.4rem .9rem; border-radius:999px; }

/* Leadership */
.person { text-align:center; }
.person__photo { width: 110px; height:110px; border-radius: 50%; margin: 0 auto 14px; background: linear-gradient(135deg,var(--navy-700),var(--teal)); display:grid; place-items:center; color:#fff; font-size:2rem; font-weight:800; }
.person h3 { font-size:1.05rem; margin-bottom:.1rem; }
.person__role { color: var(--teal-600); font-weight:600; font-size:.9rem; }

/* Membership tiers */
.tier { display:flex; flex-direction:column; }
.tier--featured { border-color: var(--teal); box-shadow: var(--shadow-md); position:relative; }
.tier--featured::before { content:"Recommended"; position:absolute; top:-12px; left:50%; transform:translateX(-50%); background: var(--gold); color: var(--navy-900); font-size:.72rem; font-weight:800; padding:.25rem .8rem; border-radius:999px; letter-spacing:.04em; }
.tier__name { font-size:1.05rem; color: var(--teal-600); font-weight:700; letter-spacing:.03em; }
.tier__price { font-size:2.1rem; font-weight:800; color: var(--navy); margin:.2rem 0; }
.tier__price small { font-size:.9rem; color: var(--slate); font-weight:600; }
.tier ul { list-style:none; padding:0; margin: 16px 0 24px; }
.tier li { padding:.4rem 0 .4rem 1.6rem; position:relative; color: var(--slate); font-size:.95rem; border-top:1px solid var(--line); }
.tier li::before { content:"✓"; position:absolute; left:0; color: var(--teal); font-weight:800; }
.tier .btn { margin-top:auto; }

/* Forms */
.form-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.field { display:flex; flex-direction:column; gap:6px; }
.field.col-2 { grid-column: 1 / -1; }
.field label { font-size:.85rem; font-weight:600; color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size:.96rem; padding:.72rem .85rem; border:1px solid var(--line);
  border-radius: 10px; background:#fff; color: var(--ink); transition:.15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--teal); box-shadow:0 0 0 3px var(--teal-050); }
.field textarea { resize: vertical; min-height: 120px; }

/* Info tiles (contact) */
.info-tile { display:flex; gap:14px; align-items:flex-start; }
.info-tile__icon { width:44px; height:44px; border-radius:10px; background: var(--navy); color:#fff; display:grid; place-items:center; flex:none; }
.info-tile h3 { font-size:1rem; margin-bottom:.15rem; }
.info-tile p { color: var(--slate); margin:0; font-size:.94rem; }

/* Login card */
.auth-wrap { max-width: 430px; margin: 0 auto; }
.auth-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-md); }
.auth-card .field { margin-bottom: 16px; }

/* Notice */
.notice { background: var(--teal-050); border:1px solid #CDE8E8; border-left: 4px solid var(--teal); border-radius: 10px; padding: 16px 18px; color: var(--navy-700); font-size:.92rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #9FB6C4; padding: 64px 0 0; }
.footer a { color: #B9CEDA; }
.footer a:hover { color:#fff; }
.footer__grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer__brand .brand__name { color:#fff; }
.footer__brand p { font-size:.92rem; margin-top: 14px; max-width: 260px; }
.footer h4 { color:#fff; font-size:.82rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom: 16px; }
.footer ul { list-style:none; padding:0; margin:0; }
.footer li { margin-bottom:.55rem; font-size:.93rem; }
.footer__social { display:flex; gap:10px; margin-top:16px; }
.footer__social a { width:38px; height:38px; border-radius:10px; background: rgba(255,255,255,.07); display:grid; place-items:center; }
.footer__social a:hover { background: var(--teal); }
.footer__social svg { width:18px; height:18px; }
.footer__bottom { border-top:1px solid rgba(255,255,255,.1); margin-top: 48px; padding: 22px 0; font-size:.85rem; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }

/* ---------- Reveal animation (CSS-only; degrades to visible without JS) ---------- */
@keyframes revealIn { from { opacity:0; transform: translateY(18px); } to { opacity:1; transform:none; } }
.reveal { animation: revealIn .7s ease both; }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid--4, .quicklinks { grid-template-columns: repeat(2,1fr); }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav__links, .nav__actions .lang { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 20px 20px; box-shadow: var(--shadow-md);
  }
  .grid--2, .grid--3, .mv { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .cta-band { padding: 40px 24px; }
}
@media (max-width: 520px) {
  .grid--4, .quicklinks, .stats__grid { grid-template-columns: 1fr; }
  .hero__inner { padding: 64px 0 130px; }
}

/* ============ Admin panel ============ */
.admin { display:flex; min-height:100vh; background:var(--mist); }
.admin__side { width:240px; flex:none; background:var(--navy-900); color:#9FB6C4; padding:22px 16px; }
.admin__brand { display:flex; align-items:center; gap:10px; color:#fff; font-weight:800; font-size:1.1rem; margin-bottom:24px; padding:0 6px; }
.admin__brand .brand__mark { height:30px; }
.admin__nav a { display:flex; align-items:center; gap:10px; padding:.6rem .75rem; border-radius:9px; color:#B9CEDA; font-weight:500; font-size:.95rem; margin-bottom:2px; }
.admin__nav a:hover { background:rgba(255,255,255,.06); color:#fff; }
.admin__nav a.active { background:var(--teal-600); color:#fff; }
.admin__nav .sep { border-top:1px solid rgba(255,255,255,.1); margin:14px 6px; }
.admin__main { flex:1; min-width:0; }
.admin__bar { background:#fff; border-bottom:1px solid var(--line); padding:14px 28px; display:flex; justify-content:space-between; align-items:center; }
.admin__bar h1 { font-size:1.25rem; margin:0; }
.admin__body { padding:28px; }
.admin-badge { display:inline-block; font-size:.72rem; font-weight:700; padding:.18rem .5rem; border-radius:999px; }
.badge-active { background:#E7F4EC; color:#1B7A44; }
.badge-pending { background:#FBF0DA; color:#8A6A1E; }
.stat-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:16px; margin-bottom:26px; }
.stat-card { background:#fff; border:1px solid var(--line); border-radius:12px; padding:18px 20px; }
.stat-card .n { font-size:2rem; font-weight:800; color:var(--navy); }
.stat-card .l { font-size:.85rem; color:var(--slate); font-weight:600; }
.data-table { width:100%; border-collapse:collapse; background:#fff; border:1px solid var(--line); border-radius:12px; overflow:hidden; }
.data-table th { text-align:left; font-size:.75rem; text-transform:uppercase; letter-spacing:.05em; color:var(--slate); background:var(--mist); padding:12px 16px; border-bottom:1px solid var(--line); }
.data-table td { padding:12px 16px; border-bottom:1px solid var(--line); font-size:.94rem; vertical-align:middle; }
.data-table tr:last-child td { border-bottom:none; }
.admin-form { background:#fff; border:1px solid var(--line); border-radius:12px; padding:26px; max-width:900px; }
.admin-form .field { margin-bottom:16px; }
.admin-form textarea.code { font-family:ui-monospace,Menlo,monospace; font-size:.85rem; min-height:360px; }
.btn--sm { padding:.4rem .8rem; font-size:.85rem; }
.btn--danger { background:#fff; border-color:#E4B4AB; color:#B23A26; }
.btn--danger:hover { background:#B23A26; color:#fff; border-color:#B23A26; }
.inline-form { display:inline; }
.auth-page { display:grid; place-items:center; min-height:100vh; background:var(--mist); padding:24px; }
@media (max-width:760px){ .admin{flex-direction:column} .admin__side{width:auto} }

/* Required-field asterisks on the membership application form */
.appform .field > label::after { content: " *"; color: #C0492F; font-weight: 700; }
.appform .field--opt > label::after { content: none; }

/* ===================== Dhivehi / RTL ===================== */
html[dir="rtl"] body,
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select,
html[dir="rtl"] button { font-family: "Noto Sans Thaana", "MV Faseyha", var(--font); }
html[dir="rtl"] body { line-height: 1.9; }
html[dir="rtl"] .brand__text { text-align: right; }
html[dir="rtl"] .brand__sub { width: auto; max-width: 230px; }
html[dir="rtl"] .hero__inner { margin-inline: 0 auto; }
html[dir="rtl"] .section-head.center,
html[dir="rtl"] .stat,
html[dir="rtl"] .cta-band { text-align: center; }
html[dir="rtl"] .eyebrow { flex-direction: row-reverse; }
html[dir="rtl"] .news-card__tag { left: auto; right: 14px; }
html[dir="rtl"] .btn { direction: rtl; }
/* Keep the boat logo and directional glyph arrows visually correct */
html[dir="rtl"] .brand__mark { transform: none; }
