
:root {
  --fbm-sea: #0a4d6e;
  --fbm-sea-deep: #073850;
  --fbm-sea-mid: #1a6e94;
  --fbm-gold: #f4a02d;
  --fbm-gold-deep: #d4861b;
  --fbm-paper: #e8f1f7;
  --fbm-cream: #f8fbfd;
  --fbm-ink: #1a2330;
  --fbm-line: #cfdce7;
  --fbm-muted: #5e6e7e;
  --fbm-soft: #f0f5f9;
  --fbm-radius: 8px;
  --fbm-shadow: 0 4px 16px rgba(10, 77, 110, 0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans', -apple-system, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--fbm-ink);
  background: var(--fbm-cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--fbm-sea); text-decoration: none; }
a:hover { text-decoration: underline; }

.fbm-wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* === STICKY HEADER === */
.fbm-hdr {
  background: var(--fbm-sea);
  color: #fff;
  padding: 14px 0;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 14px rgba(0,0,0,0.15);
}
.fbm-hdr-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.fbm-brand {
  font-family: 'Crimson Text', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.fbm-brand:hover { text-decoration: none; }
.fbm-brand-mark {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: var(--fbm-gold);
  border-radius: 6px;
  position: relative;
  flex-shrink: 0;
}
.fbm-brand-mark::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path d='M4 22 L28 22 L25 17 L7 17 Z' fill='%230a4d6e'/><rect x='14' y='8' width='2' height='9' fill='%230a4d6e'/><path d='M16 8 L24 13 L16 13 Z' fill='%230a4d6e'/></svg>") center/contain no-repeat;
}
.fbm-brand-text { display: inline-flex; flex-direction: column; gap: 3px; }
.fbm-brand-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.78;
  color: var(--fbm-gold);
  line-height: 1;
}
.fbm-hdr-cta {
  background: var(--fbm-gold);
  color: var(--fbm-sea) !important;
  padding: 10px 20px;
  border-radius: var(--fbm-radius);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.2s;
}
.fbm-hdr-cta:hover { background: var(--fbm-gold-deep); text-decoration: none; transform: translateY(-1px); }

/* === HERO === */
.fbm-hero {
  background: linear-gradient(135deg, var(--fbm-sea) 0%, var(--fbm-sea-deep) 100%);
  color: #fff;
  padding: 64px 0 56px;
  position: relative;
}
.fbm-hero h1 {
  font-family: 'Crimson Text', serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.fbm-hero h1 em { color: var(--fbm-gold); font-style: normal; }
.fbm-lead {
  font-size: 18px;
  line-height: 1.6;
  max-width: 740px;
  margin-bottom: 28px;
  opacity: 0.95;
}
.fbm-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 28px;
  margin-bottom: 0;
}
.fbm-hero-stat strong {
  display: block;
  font-family: 'Crimson Text', serif;
  font-size: 28px;
  color: var(--fbm-gold);
  font-weight: 700;
  line-height: 1.1;
}
.fbm-hero-stat span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* === SEARCH PANEL === */
.fbm-search {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  margin-top: 8px;
}
.fbm-search-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr 1fr 0.9fr auto;
  gap: 10px;
  align-items: end;
}
.fbm-search-field { display: block; }
.fbm-search-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--fbm-muted);
  margin-bottom: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.fbm-search-field input, .fbm-search-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--fbm-line);
  border-radius: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  color: var(--fbm-ink);
  background: var(--fbm-soft);
  transition: all 0.15s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.fbm-search-field input[readonly] { background: var(--fbm-paper); cursor: default; }
.fbm-search-field input:focus, .fbm-search-field select:focus {
  outline: none;
  border-color: var(--fbm-sea);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10, 77, 110, 0.12);
}
.fbm-search-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1 L6 6 L11 1' stroke='%230a4d6e' stroke-width='1.8' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 36px;
}
.fbm-search-submit {
  background: var(--fbm-gold);
  color: var(--fbm-sea);
  border: none;
  padding: 12px 26px;
  border-radius: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(244, 160, 45, 0.4);
}
.fbm-search-submit:hover { background: var(--fbm-gold-deep); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(244, 160, 45, 0.5); }
.fbm-search-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--fbm-line);
  font-size: 12px;
  color: var(--fbm-muted);
}
.fbm-search-trust-item { display: flex; align-items: center; gap: 6px; }
.fbm-search-trust-item::before { content: "✓"; color: var(--fbm-gold-deep); font-weight: 700; }

.fbm-btn {
  display: inline-block;
  background: var(--fbm-gold);
  color: var(--fbm-sea);
  padding: 14px 32px;
  border-radius: var(--fbm-radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(244, 160, 45, 0.35);
}
.fbm-btn:hover { background: var(--fbm-gold-deep); transform: translateY(-2px); text-decoration: none; box-shadow: 0 6px 20px rgba(244, 160, 45, 0.45); color: var(--fbm-sea); }

/* === SECTIONS === */
.fbm-sec { padding: 56px 0; }
.fbm-sec--alt { background: var(--fbm-paper); }
.fbm-sec h2 {
  font-family: 'Crimson Text', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--fbm-sea);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.fbm-sec h2::after { content: ""; display: block; width: 56px; height: 3px; background: var(--fbm-gold); margin-top: 12px; }
.fbm-sec h3 {
  font-family: 'Crimson Text', serif;
  font-size: 24px;
  color: var(--fbm-sea-mid);
  margin: 24px 0 12px;
  font-weight: 700;
}
.fbm-sec p { margin-bottom: 14px; }
.fbm-sec p strong { color: var(--fbm-sea); }
.fbm-intro p { font-size: 16px; }
.fbm-wgt { margin: 24px 0; padding: 18px; background: #fff; border: 1px solid var(--fbm-line); border-radius: var(--fbm-radius); box-shadow: var(--fbm-shadow); }

/* === TABLES === */
.fbm-tab-wrap { overflow-x: auto; margin: 16px 0; }
.fbm-tab { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--fbm-radius); box-shadow: var(--fbm-shadow); }
.fbm-tab th, .fbm-tab td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--fbm-line); }
.fbm-tab th { background: var(--fbm-sea); color: #fff; font-weight: 600; font-size: 13px; letter-spacing: 0.4px; text-transform: uppercase; }
.fbm-tab tr:last-child td { border-bottom: none; }
.fbm-tab tr:hover { background: var(--fbm-soft); }
.fbm-tab-pr { font-weight: 700; color: var(--fbm-gold-deep); white-space: nowrap; }

.fbm-callout {
  border-left: 4px solid var(--fbm-gold);
  background: #fff;
  padding: 16px 22px;
  border-radius: 0 var(--fbm-radius) var(--fbm-radius) 0;
  margin: 22px 0;
  box-shadow: var(--fbm-shadow);
}
.fbm-callout p { margin-bottom: 0; }

/* === COMPANY CARDS === */
.fbm-cos { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 20px; }
.fbm-co {
  background: #fff;
  border: 1px solid var(--fbm-line);
  border-radius: var(--fbm-radius);
  padding: 22px 24px;
  box-shadow: var(--fbm-shadow);
}
.fbm-co h3 { margin-top: 0; }
.fbm-co-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 12px 0 14px;
  padding: 10px 14px;
  background: var(--fbm-soft);
  border-radius: 6px;
  font-size: 13px;
}
.fbm-co-meta-item { display: flex; align-items: baseline; gap: 4px; }
.fbm-co-meta-k { color: var(--fbm-muted); }
.fbm-co-meta-v { color: var(--fbm-sea); font-weight: 600; }
.fbm-co ul { list-style: none; padding: 0; margin: 12px 0; }
.fbm-co li { padding-left: 26px; margin-bottom: 8px; position: relative; line-height: 1.55; font-size: 15px; }
.fbm-co li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--fbm-gold-deep); font-weight: 700; font-size: 17px; }

/* === TIPS === */
.fbm-tips {
  background: #fff;
  border: 2px solid var(--fbm-sea);
  border-radius: var(--fbm-radius);
  padding: 26px 28px;
  box-shadow: var(--fbm-shadow);
}
.fbm-tips h3 { margin-top: 0; color: var(--fbm-sea); border-bottom: 2px solid var(--fbm-gold); padding-bottom: 10px; }
.fbm-tips ol { padding-left: 22px; margin: 0; }
.fbm-tips li { margin-bottom: 12px; padding-left: 6px; }
.fbm-tips li::marker { color: var(--fbm-gold-deep); font-weight: 700; }

/* === ROUTE MAP === */
.fbm-map {
  background: linear-gradient(160deg, #fff 0%, var(--fbm-paper) 100%);
  border-radius: var(--fbm-radius);
  padding: 28px 24px 22px;
  margin: 24px 0;
  box-shadow: var(--fbm-shadow);
  border: 1px solid var(--fbm-line);
}
.fbm-map-title { font-family: 'Crimson Text', serif; font-size: 20px; color: var(--fbm-sea); margin-bottom: 4px; font-weight: 700; }
.fbm-map-sub { font-size: 13px; color: var(--fbm-muted); margin-bottom: 22px; }
.fbm-map-svg { width: 100%; height: auto; display: block; }
.fbm-map-legend { display: flex; justify-content: center; flex-wrap: wrap; margin-top: 14px; gap: 22px; font-size: 12px; color: var(--fbm-muted); }
.fbm-map-legend-pt { display: flex; align-items: center; gap: 6px; font-weight: 600; }
.fbm-map-legend-pt-dot { width: 12px; height: 12px; border-radius: 50%; }

/* === PORTS GRID === */
.fbm-ports { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 20px; }
.fbm-port {
  background: #fff;
  border: 1px solid var(--fbm-line);
  border-radius: var(--fbm-radius);
  padding: 22px 24px;
  box-shadow: var(--fbm-shadow);
}
.fbm-port h3 { margin-top: 0; }
.fbm-port-flag {
  display: inline-block;
  background: var(--fbm-gold);
  color: var(--fbm-sea);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* === PRACTICAL FACTSHEET === */
.fbm-fic { background: #fff; border-radius: var(--fbm-radius); padding: 28px; box-shadow: var(--fbm-shadow); margin-top: 18px; }
.fbm-fic-r { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--fbm-line); gap: 16px; }
.fbm-fic-r:last-child { border-bottom: none; }
.fbm-fic-k { font-weight: 600; color: var(--fbm-muted); font-size: 13px; letter-spacing: 0.3px; text-transform: uppercase; flex: 0 0 auto; }
.fbm-fic-v { text-align: right; color: var(--fbm-sea); font-weight: 600; }

/* === REVIEWS / Q&A === */
.fbm-reviews { background: var(--fbm-cream); padding: 56px 0; border-top: 4px solid var(--fbm-gold); }
.fbm-reviews-intro {
  background: #fff;
  border-radius: var(--fbm-radius);
  padding: 22px 26px;
  margin-bottom: 26px;
  box-shadow: var(--fbm-shadow);
  border-left: 4px solid var(--fbm-sea);
}
.fbm-reviews-intro p { margin-bottom: 0; font-size: 16px; }

.fbm-form {
  background: linear-gradient(135deg, #fff 0%, var(--fbm-paper) 100%);
  border-radius: var(--fbm-radius);
  padding: 26px 28px;
  margin-bottom: 30px;
  box-shadow: var(--fbm-shadow);
  border: 1px solid var(--fbm-line);
}
.fbm-form h3 { font-family: 'Crimson Text', serif; color: var(--fbm-sea); margin: 0 0 8px; font-size: 22px; }
.fbm-form-hint { font-size: 14px; color: var(--fbm-muted); margin-bottom: 16px; }
.fbm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fbm-form-field { display: block; }
.fbm-form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--fbm-sea); margin-bottom: 5px; }
.fbm-form-field input, .fbm-form-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--fbm-line);
  border-radius: 6px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  background: #fff;
  transition: border-color 0.15s;
}
.fbm-form-field input:focus, .fbm-form-field textarea:focus { outline: none; border-color: var(--fbm-gold); box-shadow: 0 0 0 3px rgba(244, 160, 45, 0.15); }
.fbm-form-field textarea { resize: vertical; min-height: 90px; }
.fbm-form-submit {
  display: inline-block;
  background: var(--fbm-sea);
  color: #fff;
  padding: 12px 26px;
  border: none;
  border-radius: var(--fbm-radius);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.fbm-form-submit:hover { background: var(--fbm-sea-deep); transform: translateY(-1px); }
.fbm-form-note { font-size: 12px; color: var(--fbm-muted); margin-top: 10px; margin-bottom: 0; font-style: italic; }

.fbm-thread { margin-top: 6px; }
.fbm-msg {
  background: #fff;
  border-radius: var(--fbm-radius);
  padding: 16px 22px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(10, 77, 110, 0.05);
  border-left: 3px solid var(--fbm-line);
}
.fbm-msg--reply { margin-left: 32px; background: var(--fbm-paper); border-left-color: var(--fbm-gold); }
.fbm-msg-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-bottom: 6px; }
.fbm-msg-name { font-weight: 700; color: var(--fbm-sea); font-size: 15px; }
.fbm-msg--reply .fbm-msg-name { color: var(--fbm-gold-deep); }
.fbm-msg-name-tag {
  display: inline-block;
  background: var(--fbm-gold);
  color: var(--fbm-sea);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-left: 6px;
  text-transform: uppercase;
}
.fbm-msg-date { font-size: 12px; color: var(--fbm-muted); }
.fbm-msg-body { font-size: 15px; line-height: 1.6; color: var(--fbm-ink); }

/* === HISTOGRAM === */
.fbm-histo {
  background: #fff;
  border-radius: var(--fbm-radius);
  padding: 24px 24px 18px;
  margin: 24px 0;
  box-shadow: var(--fbm-shadow);
  border: 1px solid var(--fbm-line);
}
.fbm-histo-title { font-family: 'Crimson Text', serif; font-size: 19px; color: var(--fbm-sea); margin-bottom: 4px; font-weight: 700; }
.fbm-histo-sub { font-size: 13px; color: var(--fbm-muted); margin-bottom: 18px; }
.fbm-histo-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--fbm-line); font-size: 12px; color: var(--fbm-muted); }
.fbm-histo-leg { display: inline-flex; align-items: center; gap: 6px; }
.fbm-histo-leg-dot { width: 12px; height: 12px; border-radius: 3px; }

/* === OUTBOUND TRUST STRIP === */
.fbm-trust {
  background: #fff;
  border: 1px solid var(--fbm-line);
  border-radius: var(--fbm-radius);
  padding: 20px 24px;
  margin: 24px 0;
  box-shadow: var(--fbm-shadow);
}
.fbm-trust-h { font-family: 'Crimson Text', serif; font-size: 16px; color: var(--fbm-sea); margin-bottom: 12px; font-weight: 700; letter-spacing: 0.3px; }
.fbm-trust-row { display: flex; flex-wrap: wrap; gap: 14px; }
.fbm-trust-row a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--fbm-paper);
  border: 1px solid var(--fbm-line);
  border-radius: 6px;
  color: var(--fbm-sea);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.15s;
}
.fbm-trust-row a:hover { background: var(--fbm-sea); color: #fff; border-color: var(--fbm-sea); text-decoration: none; }
.fbm-trust-row a::after { content: " \2197"; font-size: 11px; opacity: 0.7; }

/* === LANGUAGE SELECT (footer) === */
.fbm-ft-lang {
  position: relative;
  display: inline-block;
}
.fbm-ft-lang select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 38px 10px 16px;
  border-radius: 6px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
  min-width: 180px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1 L6 6 L11 1' stroke='%23f4a02d' stroke-width='1.8' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
}
.fbm-ft-lang select option { background: var(--fbm-sea-deep); color: #fff; }
.fbm-ft-lang select:focus { outline: none; border-color: var(--fbm-gold); }


.fbm-ft { background: var(--fbm-sea-deep); color: #c7d4dc; padding: 50px 0 28px; margin-top: 40px; font-size: 15px; }
.fbm-ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.fbm-ft h4 { font-family: 'Crimson Text', serif; font-size: 20px; color: var(--fbm-gold); margin-bottom: 14px; font-weight: 700; }
.fbm-ft a { color: #fff; }
.fbm-ft a:hover { color: var(--fbm-gold); }
.fbm-ft p { margin-bottom: 10px; line-height: 1.6; }
.fbm-ft-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #93a3ad;
  text-align: center;
  line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .fbm-search-grid { grid-template-columns: 1fr 1fr; }
  .fbm-search-submit { grid-column: 1 / -1; }
  .fbm-ports { grid-template-columns: 1fr; }
  .fbm-ft-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .fbm-hero { padding: 44px 0 40px; }
  .fbm-hero h1 { font-size: 30px; }
  .fbm-lead { font-size: 16px; }
  .fbm-hero-stats { gap: 18px; }
  .fbm-hero-stat strong { font-size: 22px; }
  .fbm-sec { padding: 40px 0; }
  .fbm-sec h2 { font-size: 26px; }
  .fbm-sec h3 { font-size: 21px; }
  .fbm-btn { width: 100%; display: flex; justify-content: center; padding: 14px 24px; }
  .fbm-brand { font-size: 16px; gap: 8px; }
  .fbm-brand-sub { font-size: 9px; letter-spacing: 1px; }
  .fbm-hdr-cta { padding: 8px 14px; font-size: 13px; }
  .fbm-search { padding: 16px; }
  .fbm-search-grid { grid-template-columns: 1fr; gap: 12px; }
  .fbm-ft-grid { grid-template-columns: 1fr; gap: 28px; }
  .fbm-tab th, .fbm-tab td { padding: 10px 12px; font-size: 14px; }
  .fbm-fic-r { flex-direction: column; gap: 4px; }
  .fbm-fic-v { text-align: left; }
  .fbm-form-row { grid-template-columns: 1fr; }
  .fbm-msg--reply { margin-left: 16px; }
  .fbm-reviews { padding: 40px 0; }
  .fbm-map { padding: 18px 14px; }
  .fbm-co-meta { gap: 10px; padding: 8px 12px; font-size: 12px; }
}
