/* ================================================
   HIBERNIA SHIPPING — GLOBAL STYLESHEET
   Light Corporate Maritime · All Pages
================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1c2541;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f5f6fa; }
::-webkit-scrollbar-thumb { background: #1d2e5a; border-radius: 10px; }

/* ── CSS VARIABLES
   (variable names kept; values remapped to light theme.
    Accent color is taken from the logo: deep navy + silver.) ── */
:root {
  /* Surfaces / backgrounds */
  --black:    #ffffff;          /* main bg (was dark) */
  --dark:     #fafbfd;
  --dark2:    #f4f6fb;          /* card / section alt */
  --dark3:    #ecf0f7;          /* deeper card */

  /* Accent — Navy from logo */
  --gold:     #1d2e5a;          /* primary accent (logo navy) */
  --gold2:    #2a4380;          /* hover / lighter navy */
  --gold-lt:  rgba(29,46,90,0.07);

  /* Silver from logo */
  --silver:   #a8b0bc;
  --silver2:  #c6ccd6;

  --blue:     #1d2e5a;
  --blue2:    #0e1a3a;
  --accent:   #1d2e5a;

  /* Text */
  --white:    #ffffff;
  --off-white:#0e1a3a;          /* primary heading text (dark navy) */
  --light:    #45526b;          /* body text */
  --dim:      #6b7388;          /* muted text / labels */

  /* Borders */
  --border:   rgba(14,26,58,0.10);
  --border2:  rgba(29,46,90,0.20);

  --radius:   3px;
  --radius2:  6px;
  --shadow:   0 18px 48px rgba(14,26,58,0.08);
  --shadow-lg:0 24px 64px rgba(14,26,58,0.12);
  --trans:    all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; }
h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.2; }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.45rem); font-weight: 700; letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.005em; }
h5 { font-weight: 600; font-size: 0.95rem; letter-spacing: 0; }
h1 em, h2 em, h3 em, h4 em { font-style: normal; color: var(--gold); }
p  { font-size: 0.95rem; color: var(--light); }

.sans  { font-family: 'Inter', sans-serif; }
.mono  { font-family: 'IBM Plex Mono', monospace; }

/* ── LAYOUT ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 40px; }
section { padding: 120px 0; }

/* ── ACCENT RULE ── */
.gold-rule {
  width: 56px; height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
  border-radius: 1px;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ── LABEL CHIP ── */
.label-chip {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.label-chip::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; border-radius: var(--radius);
  transition: var(--trans);
  position: relative; overflow: hidden;
  cursor: pointer;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0; transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--gold);
  color: #ffffff;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(29,46,90,0.28); }

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1px solid var(--border2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-lt); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 0;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.btn-ghost .arrow { display: inline-block; transition: transform 0.25s; }
.btn-ghost:hover .arrow { transform: translateX(5px); }
.btn-ghost::after { display: none; }

/* ── TOPBAR ── */
.topbar {
  background: var(--off-white);
  color: var(--silver2);
  padding: 9px 0;
  font-size: 0.74rem;
  font-family: 'Inter', sans-serif;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.topbar a { color: var(--silver2); transition: color 0.2s; }
.topbar a:hover { color: #ffffff; }
.topbar-links { display: flex; gap: 28px; align-items: center; }
.topbar-links i { font-size: 0.7rem; margin-right: 6px; color: var(--silver); }
.tb-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  transition: var(--trans);
}
.navbar.scrolled {
  background: rgba(255,255,255,1);
  box-shadow: 0 4px 32px rgba(14,26,58,0.06);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 90px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
/* Transparent logo on white background — no pill, no bg */
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
  background: transparent;
  padding: 0;
  border-radius: 0;
  transition: var(--trans);
  mix-blend-mode: multiply;
}
.brand:hover .brand-logo { transform: scale(1.02); }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 5px; }
.hamburger span { width: 24px; height: 1.5px; background: var(--off-white); transition: var(--trans); display: block; }

/* ── NAV MENU ── */
.nav-menu {
  display: flex; align-items: center; gap: 4px;
}
.nav-menu a {
  padding: 8px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--light);
  border-radius: var(--radius);
  transition: var(--trans);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute; bottom: 4px; left: 16px; right: 16px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--off-white); }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold) !important;
  color: #ffffff !important;
  padding: 11px 24px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold2) !important; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(29,46,90,0.25); }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding: 110px 0 90px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--dark2) 0%, #ffffff 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(29,46,90,0.06) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero p { font-size: 1.05rem; max-width: 560px; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem; color: var(--dim);
  margin-bottom: 30px;
  letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--dim); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* Interior page sections */
.page-section { padding: 100px 0; }
.page-section-sm { padding: 80px 0; }
.page-section-alt { background: var(--dark2); }

/* Split hero — text + image (services, fleet, about, contact, cargo-finder) */
.page-hero-split {
  background: var(--blue2);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-hero-split::before { display: none; }
.page-hero-split .page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 52vh;
  background: var(--blue2);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.page-hero-split .page-hero-content {
  padding: 96px 48px 88px 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--blue2);
}
.page-hero-split .page-hero-content h1 { color: #fff; margin-bottom: 20px; }
.page-hero-split .page-hero-content h1 em { font-style: normal; color: var(--silver); font-weight: 800; }
.page-hero-split .page-hero-content p { color: var(--silver2); font-size: 1.05rem; max-width: 500px; }
.page-hero-split .page-hero-content .breadcrumb { color: var(--silver); margin-bottom: 24px; }
.page-hero-split .page-hero-content .breadcrumb a { color: var(--silver); }
.page-hero-split .page-hero-content .breadcrumb a:hover { color: #fff; }
.page-hero-split .page-hero-content .breadcrumb span { color: #fff; }
.page-hero-split .page-hero-content .label-chip { color: var(--silver); }
.page-hero-split .page-hero-content .label-chip::before { background: var(--silver); }
.page-hero-split .page-hero-img { position: relative; overflow: hidden; min-height: 280px; }
.page-hero-split .page-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Content directly below split hero — breathing room */
.page-hero-split + section,
.page-hero-split + .hero-strip-bar {
  border-top: 1px solid var(--border);
}

/* Cargo Finder */
.finder-section {
  background: var(--black);
  padding: 80px 0 100px;
}
.finder-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}
.finder-sidebar { position: sticky; top: 110px; }
.finder-sidebar h3 { margin-bottom: 14px; font-size: 1.5rem; }
.finder-sidebar p { font-size: 0.88rem; margin-bottom: 28px; }

/* Fleet — image strip below hero */
.hero-strip-bar {
  background: var(--blue2);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-strip-bar .container { padding-left: 40px; padding-right: 40px; }
.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border-radius: var(--radius2);
  overflow: hidden;
}
.hero-strip-cell {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.hero-strip-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hero-strip-cell:hover img { transform: scale(1.06); }
.hero-strip-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,26,58,0.85) 100%);
}
.hero-strip-cell .hs-meta {
  position: absolute;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  color: #fff;
}
.hero-strip-cell .hs-meta .hs-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 4px;
}
.hero-strip-cell .hs-meta .hs-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.fleet-section {
  background: var(--black);
  padding: 100px 0;
}
.fleet-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

/* Article / legal content */
.page-article-section { padding: 100px 0 80px; }

/* ── SECTION HEADER ── */
.sec-header { margin-bottom: 64px; }
.sec-header.center { text-align: center; }
.sec-header.center .gold-rule { margin: 0 auto 20px; }
.sec-header h2 { margin-bottom: 16px; }
.sec-header p { max-width: 560px; font-size: 1rem; }
.sec-header.center p { margin: 0 auto; }

/* ── CARDS ── */
.card-base {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 36px 32px;
  transition: var(--trans);
}
.card-base:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* ── LINE DIVIDER ── */
.line-divider {
  width: 100%; height: 1px;
  background: var(--border);
  margin: 80px 0;
}

/* ── TAG ── */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border2);
  border-radius: 2px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
}

/* ── FORM ELEMENTS ── */
.field {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}
.field label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dim);
}
.field input,
.field select,
.field textarea {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--off-white);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--dim); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(29,46,90,0.08); }
.field select option { background: #ffffff; }
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow: hidden;
}
.stat-cell {
  background: #ffffff;
  padding: 40px 28px;
  text-align: center;
}
.stat-cell .num {
  font-family: 'Inter', sans-serif;
  font-size: 2.6rem; font-weight: 800;
  color: var(--gold);
  display: block; line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat-cell .lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dim);
}

/* ── FOOTER ── */
footer {
  background: var(--off-white);
  color: var(--silver2);
  padding: 90px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.88rem; line-height: 1.85;
  max-width: 290px; margin: 22px 0 28px;
  color: var(--silver);
}
/* Logo in dark footer needs to be visible — use white card behind it OR invert via filter.
   We use a brightness/contrast filter to keep the logo crisp on dark footer. */
.footer-brand .brand-logo {
  height: 80px;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: var(--radius2);
  mix-blend-mode: normal;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--silver);
  transition: var(--trans);
}
.footer-socials a:hover { border-color: var(--silver); color: #ffffff; background: rgba(255,255,255,0.05); }
.footer-col h6 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--silver); margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 0.88rem; color: var(--silver);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #ffffff; }
.footer-bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; color: var(--silver);
}
.footer-bottom a { color: var(--silver); transition: color 0.2s; }
.footer-bottom a:hover { color: #ffffff; }

/* ── FLOATING WA ── */
.float-wa {
  position: fixed; bottom: 30px; right: 30px;
  width: 56px; height: 56px;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  box-shadow: 0 10px 28px rgba(37,211,102,0.4);
  z-index: 8000;
  transition: var(--trans);
  border-radius: 50%;
}
.float-wa:hover { background: #1fba58; transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 36px rgba(37,211,102,0.5); }

/* ── CURSOR LINE ── */
.cursor-line {
  display: inline-block;
  width: 2px; height: 1em;
  background: var(--gold);
  margin-left: 4px;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Never hide critical UI if JS is slow or observer misses */
.filter-bar.reveal,
.form-tabs.reveal,
.form-card.reveal,
.vessel-list,
#vesselList,
.blog-grid .blog-card { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .page-hero-split .page-hero-inner { grid-template-columns: 1fr; padding: 0 28px; }
  .page-hero-split .page-hero-content { padding: 72px 0 40px; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .finder-layout { grid-template-columns: 1fr; }
  .finder-sidebar { position: static; }
  .fleet-intro-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .container-sm { padding: 0 20px; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: #ffffff;
    flex-direction: column; align-items: flex-start;
    padding: 100px 36px 40px;
    gap: 4px; z-index: 850;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid var(--border);
    overflow-y: auto;
    box-shadow: -4px 0 40px rgba(14,26,58,0.08);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { padding: 14px 0; font-size: 0.88rem; width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .topbar { display: none; }
  .navbar { padding: 0 20px; }
  .nav-inner { height: 76px; }
  .brand-logo { height: 54px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .brand-logo { height: 48px; }
}

/* ================================================
   EXTENDED COMPONENTS — New Pages
================================================ */

/* Dark split page hero */
.page-hero-dark {
  background: var(--blue2);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-hero-dark::before { display: none; }
.page-hero-dark-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 52vh;
  background: var(--blue2);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.page-hero-dark-content {
  padding: 96px 48px 88px 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--blue2);
}
.page-hero-dark-content h1 { color: #fff; margin-bottom: 16px; }
.page-hero-dark-content h1 em { font-style: normal; color: var(--silver); font-weight: 800; }
.page-hero-dark-content p { color: var(--silver2); font-size: 1.02rem; max-width: 520px; }
.page-hero-dark-content .breadcrumb { color: var(--silver); margin-bottom: 24px; }
.page-hero-dark-content .breadcrumb a { color: var(--silver); }
.page-hero-dark-content .breadcrumb a:hover { color: #fff; }
.page-hero-dark-content .breadcrumb span { color: #fff; }
.page-hero-dark-content .label-chip { color: var(--silver); }
.page-hero-dark-content .label-chip::before { background: var(--silver); }
.page-hero-dark-img { position: relative; overflow: hidden; }
.page-hero-dark-img img { width: 100%; height: 100%; object-fit: cover; }

/* Filter bar */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 12px;
  padding: 24px;
  background: var(--dark2);
  border: 1px solid var(--border);
  margin-bottom: 32px;
  align-items: flex-end;
}
.filter-bar .field { margin-bottom: 0; flex: 1; min-width: 160px; }
.filter-bar .btn { flex-shrink: 0; padding: 14px 24px; }

/* Vessel listing cards */
.vessel-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.vessel-card-list {
  background: #fff;
  border: 1px solid var(--border);
  display: grid; grid-template-columns: 220px 1fr;
  overflow: hidden;
  transition: var(--trans);
}
.vessel-card-list:hover { border-color: var(--border2); box-shadow: var(--shadow); transform: translateY(-2px); }
.vessel-card-list .vc-img { position: relative; overflow: hidden; min-height: 180px; }
.vessel-card-list .vc-img img { width: 100%; height: 100%; object-fit: cover; }
.vessel-card-list .vc-status {
  position: absolute; top: 12px; left: 12px;
  background: #25D366; color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 10px;
}
.vessel-card-list .vc-body { padding: 22px 24px; display: flex; flex-direction: column; }
.vessel-card-list .vc-type {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.vessel-card-list .vc-body h3 { font-size: 1.15rem; margin-bottom: 4px; }
.vessel-card-list .vc-sub { font-size: 0.82rem; color: var(--dim); margin-bottom: 14px; }
.vessel-specs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-bottom: 16px; flex-grow: 1;
}
.vessel-specs dt {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 2px;
}
.vessel-specs dd { font-size: 0.82rem; font-weight: 600; color: var(--off-white); }
.vessel-card-list .vc-footer {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.vessel-card-list .vc-rate {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem; font-weight: 600;
  color: var(--gold);
}
.vessel-card-list .vc-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.vessel-card-list .btn-sm {
  padding: 10px 18px; font-size: 0.68rem;
}
.no-results {
  grid-column: 1 / -1;
  text-align: center; padding: 60px 20px;
  color: var(--dim); font-size: 0.95rem;
}

/* Tab forms */
.form-tabs {
  display: flex; gap: 4px; flex-wrap: wrap;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.form-tab {
  padding: 14px 22px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dim); background: transparent;
  border: none; border-bottom: 2px solid transparent;
  cursor: pointer; transition: var(--trans);
  margin-bottom: -1px;
}
.form-tab:hover { color: var(--off-white); }
.form-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.form-panel { display: none; }
.form-panel.active { display: block; }
.quote-wrap { max-width: 760px; margin: 0 auto; }
.form-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  padding: 40px 36px;
}
.form-card h3 { margin-bottom: 8px; }
.form-card > p { margin-bottom: 28px; font-size: 0.88rem; }
.form-success {
  display: none;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.3);
  padding: 20px 24px; margin-top: 20px;
  font-size: 0.9rem; color: var(--off-white);
}
.form-success.show { display: block; }

/* Market rates */
.rate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.rate-card {
  background: #fff; border: 1px solid var(--border);
  padding: 28px 24px; text-align: center;
}
.rate-card .rate-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 10px;
}
.rate-card .rate-value {
  font-family: 'Inter', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--gold); letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 8px;
}
.rate-card .rate-change { font-size: 0.78rem; color: var(--dim); }
.rate-change.up { color: #16a34a; }
.rate-change.down { color: #dc2626; }
.route-table { width: 100%; border-collapse: collapse; }
.route-table th, .route-table td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.route-table th {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dim); background: var(--dark2);
}
.route-table td:last-child { font-weight: 600; color: var(--gold); }
.disclaimer {
  font-size: 0.78rem; color: var(--dim);
  margin-top: 16px; line-height: 1.6;
}

/* Ship types guide */
.ship-type-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.ship-type-block:nth-child(even) { direction: rtl; }
.ship-type-block:nth-child(even) > * { direction: ltr; }
.ship-type-block:last-child { border-bottom: none; }
.ship-type-img { position: relative; overflow: hidden; aspect-ratio: 16/11; }
.ship-type-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius2); }
.ship-type-content .st-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.ship-type-content h2 { margin-bottom: 14px; }
.ship-type-content .st-fa { font-size: 0.88rem; color: var(--dim); margin-bottom: 16px; }
.ship-type-content p { margin-bottom: 14px; }
.ship-type-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 20px 0;
}
.ship-type-meta dt {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 4px;
}
.ship-type-meta dd { font-size: 0.85rem; color: var(--off-white); }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: #fff; border: 1px solid var(--border);
  overflow: hidden; transition: var(--trans);
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card-body p { font-size: 0.85rem; flex-grow: 1; margin-bottom: 16px; }
.blog-card-link {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 6px;
}

/* Article */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin: 40px 0 16px; font-size: 1.4rem; }
.article-body h3 { margin: 28px 0 12px; font-size: 1.15rem; }
.article-body p { margin-bottom: 18px; line-height: 1.85; }
.article-body ul { margin: 0 0 18px 20px; list-style: disc; }
.article-body ul li { margin-bottom: 8px; color: var(--light); font-size: 0.92rem; }
.article-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--dim);
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* Team & trust */
.team-people-section {
  background: var(--dark2);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.team-people-section .sec-header p { margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow: hidden;
  transition: var(--trans);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  border-color: var(--border2);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.team-card-top {
  padding: 36px 24px 28px;
  background: linear-gradient(180deg, var(--dark2) 0%, #fff 100%);
}
.team-card-portrait {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  box-shadow: 0 10px 28px rgba(14,26,58,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.65rem;
  transition: var(--trans);
}
.team-card-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-card:hover .team-card-portrait {
  border-color: var(--gold);
  background: var(--gold-lt);
  transform: scale(1.03);
}
.team-card-body {
  padding: 8px 24px 28px;
  flex-grow: 1;
}
.team-card-body h4 { font-size: 1rem; margin-bottom: 6px; }
.team-card-body .role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.team-card-body p {
  font-size: 0.82rem;
  color: var(--dim);
  line-height: 1.6;
  margin: 0;
}
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.certs-section { padding: 100px 0; background: var(--black); }
.cert-card {
  background: var(--dark2); border: 1px solid var(--border);
  padding: 28px 20px; text-align: center;
}
.cert-card i { font-size: 1.8rem; color: var(--gold); margin-bottom: 14px; }
.cert-card h5 { font-size: 0.88rem; margin-bottom: 6px; }
.cert-card p { font-size: 0.78rem; color: var(--dim); }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: #fff; border: 1px solid var(--border);
  padding: 28px 24px;
}
.testimonial-card q {
  display: block; font-size: 0.92rem;
  line-height: 1.75; color: var(--light);
  font-style: italic; margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark3); display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; color: var(--gold); font-size: 0.85rem;
}
.testimonial-author .name { font-size: 0.88rem; font-weight: 600; color: var(--off-white); }
.testimonial-author .company { font-size: 0.75rem; color: var(--dim); }

/* Case studies */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.case-card {
  background: #fff; border: 1px solid var(--border);
  overflow: hidden;
}
.case-card-img { aspect-ratio: 16/9; overflow: hidden; }
.case-card-img img { width: 100%; height: 100%; object-fit: cover; }
.case-card-body { padding: 28px; }
.case-card-body .case-stat {
  font-family: 'Inter', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--gold); letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.case-card-body h3 { margin-bottom: 10px; }
.case-card-body p { font-size: 0.88rem; }

.engagement-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* WhatsApp widget */
.wa-widget {
  position: fixed; bottom: 30px; right: 30px;
  z-index: 8000; display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.wa-panel {
  display: none; width: 320px;
  background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); border-radius: var(--radius2);
  overflow: hidden;
}
.wa-panel[hidden] { display: none !important; }
.wa-panel.open { display: block; animation: waSlide 0.25s ease; }
@keyframes waSlide { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.wa-panel-header {
  background: #25D366; color: #fff;
  padding: 18px 20px;
}
.wa-panel-header h4 { color: #fff; font-size: 0.95rem; margin-bottom: 4px; }
.wa-panel-header p { color: rgba(255,255,255,0.85); font-size: 0.78rem; }
.wa-panel-body { padding: 12px; }
.wa-option {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; width: 100%;
  background: transparent; border: 1px solid var(--border);
  margin-bottom: 8px; cursor: pointer;
  font-size: 0.82rem; color: var(--off-white);
  text-align: left; transition: var(--trans);
}
.wa-option:hover { border-color: #25D366; background: rgba(37,211,102,0.05); }
.wa-option i { color: #25D366; font-size: 1rem; width: 20px; text-align: center; }
.wa-toggle {
  width: 56px; height: 56px;
  background: #25D366; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  box-shadow: 0 10px 28px rgba(37,211,102,0.4);
  cursor: pointer; transition: var(--trans);
}
.wa-toggle:hover { background: #1fba58; transform: scale(1.05); }

/* Legal pages */
.legal-body { max-width: 760px; margin: 0 auto; }
.legal-body h2 { margin: 36px 0 14px; font-size: 1.25rem; }
.legal-body p, .legal-body li { font-size: 0.92rem; line-height: 1.8; color: var(--light); margin-bottom: 14px; }
.legal-body ul { margin: 0 0 18px 24px; list-style: disc; }

@media (max-width: 1024px) {
  .vessel-list { grid-template-columns: 1fr; }
  .rate-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid, .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .ship-type-block { grid-template-columns: 1fr; gap: 32px; }
  .ship-type-block:nth-child(even) { direction: ltr; }
}
@media (max-width: 768px) {
  .page-hero-dark-inner { grid-template-columns: 1fr; padding: 0 28px; }
  .page-hero-dark-content { padding: 72px 0 40px; }
  .page-hero-dark-img { min-height: 260px; order: -1; }
  .page-section, .page-section-sm, .page-article-section { padding: 80px 0; }
  .vessel-card-list { grid-template-columns: 1fr; }
  .vessel-specs { grid-template-columns: repeat(2, 1fr); }
  .rate-grid, .blog-grid, .testimonial-grid, .case-grid { grid-template-columns: 1fr; }
  .engagement-values { grid-template-columns: 1fr; }
  .team-grid, .cert-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .wa-panel { width: calc(100vw - 40px); max-width: 320px; }
}
