/* ============================================================
   OceanBridge Talent Group — Main Stylesheet
   Marine luxury theme: deep navy, gold, clean white
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --navy:       #0B1F3A;
  --navy-mid:   #142d52;
  --navy-light: #1e4070;
  --gold:       #C8A96E;
  --gold-dark:  #a8893e;
  --gold-pale:  #f5edd8;
  --teal:       #1b6ca8;
  --teal-light: #e8f3fb;
  --white:      #ffffff;
  --off-white:  #f7f9fc;
  --border:     #dde4ed;
  --text:       #1a2332;
  --text-muted: #5c6b80;
  --shadow-sm:  0 1px 4px rgba(11,31,58,.08);
  --shadow-md:  0 4px 20px rgba(11,31,58,.12);
  --shadow-lg:  0 12px 40px rgba(11,31,58,.18);
  --radius:     8px;
  --radius-lg:  14px;
  --transition: 200ms ease;
}

/* ── Reset / Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }

h1,h2,h3,h4,h5,h6 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.2;
}

img { max-width: 100%; height: auto; }

/* ── Utility ─────────────────────────────────────────────────── */
.text-gold  { color: var(--gold) !important; }
.text-navy  { color: var(--navy) !important; }
.bg-navy    { background-color: var(--navy) !important; }
.bg-gold    { background-color: var(--gold) !important; }
.bg-off     { background-color: var(--off-white) !important; }

.border-gold { border-color: var(--gold) !important; }

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.display-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--navy);
}

/* ── Navbar ──────────────────────────────────────────────────── */
.ob-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.ob-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
}

.ob-nav .brand-mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  font-family: 'DM Serif Display', serif;
  flex-shrink: 0;
}

.ob-nav .brand-text {
  line-height: 1.1;
}

.ob-nav .brand-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.2px;
}

.ob-nav .brand-text span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.ob-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text) !important;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: all var(--transition);
}

.ob-nav .nav-link:hover,
.ob-nav .nav-link.active {
  color: var(--navy) !important;
  background: var(--teal-light);
}

.ob-nav .nav-link.active {
  color: var(--teal) !important;
  font-weight: 600;
}

.ob-nav .btn-nav-login {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border: 1.5px solid var(--navy);
  border-radius: 6px;
  color: var(--navy) !important;
  background: transparent;
  transition: all var(--transition);
}

.ob-nav .btn-nav-login:hover {
  background: var(--navy);
  color: var(--white) !important;
}

.ob-nav .btn-nav-apply {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  background: var(--gold);
  border: none;
  border-radius: 6px;
  color: var(--navy) !important;
  transition: all var(--transition);
}

.ob-nav .btn-nav-apply:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  /* Deep ocean night sky — layered gradients for atmosphere */
  background:
    /* Moon glow upper-right */
    radial-gradient(ellipse 40% 50% at 88% 8%, rgba(244,232,184,.09) 0%, transparent 60%),
    /* Horizon ocean light */
    radial-gradient(ellipse 100% 30% at 50% 100%, rgba(27,108,168,.28) 0%, transparent 70%),
    /* Gold warmth from left (company branding) */
    radial-gradient(ellipse 55% 55% at -5% 60%, rgba(200,169,110,.10) 0%, transparent 60%),
    /* Core deep-ocean gradient */
    linear-gradient(175deg, #040d1a 0%, #071628 25%, #0a1e38 55%, #0d2545 75%, #071830 100%);
  min-height: 86vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Ocean surface / star field layer */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Animated wave silhouette at the horizon + star dots */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 520' preserveAspectRatio='xMidYMax slice'%3E%3C!-- Deep ocean swell --%3E%3Cpath fill='rgba(11%2C31%2C58%2C0.55)' d='M0 340 Q180 310 360 325 Q540 340 720 320 Q900 300 1080 318 Q1260 336 1440 316 L1440 520 L0 520Z'/%3E%3C!-- Mid ocean layer --%3E%3Cpath fill='rgba(7%2C22%2C40%2C0.45)' d='M0 370 Q200 355 400 364 Q600 373 800 358 Q1000 343 1200 358 Q1320 367 1440 355 L1440 520 L0 520Z'/%3E%3C!-- Foam/crest highlights --%3E%3Cpath fill='none' stroke='rgba(255%2C255%2C255%2C0.07)' stroke-width='2' d='M0 338 Q180 308 360 323 Q540 338 720 318 Q900 298 1080 316 Q1260 334 1440 314'/%3E%3Cpath fill='none' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1.5' d='M0 355 Q200 344 400 350 Q600 356 800 344 Q1000 332 1200 344 Q1320 352 1440 342'/%3E%3C!-- Horizon gold shimmer --%3E%3Cpath fill='rgba(200%2C169%2C110%2C0.05)' d='M0 330 Q360 318 720 326 Q1080 334 1440 322 L1440 340 Q1080 352 720 344 Q360 336 0 348Z'/%3E%3C/svg%3E"),
    /* Star field */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300'%3E%3Ccircle cx='22' cy='18' r='1.2' fill='white' fill-opacity='0.55'/%3E%3Ccircle cx='88' cy='42' r='0.9' fill='white' fill-opacity='0.4'/%3E%3Ccircle cx='145' cy='12' r='1.4' fill='white' fill-opacity='0.65'/%3E%3Ccircle cx='198' cy='55' r='0.8' fill='white' fill-opacity='0.35'/%3E%3Ccircle cx='264' cy='28' r='1.1' fill='white' fill-opacity='0.5'/%3E%3Ccircle cx='322' cy='8' r='0.9' fill='white' fill-opacity='0.45'/%3E%3Ccircle cx='378' cy='36' r='1.0' fill='white' fill-opacity='0.4'/%3E%3Ccircle cx='56' cy='68' r='0.8' fill='white' fill-opacity='0.35'/%3E%3Ccircle cx='112' cy='82' r='1.0' fill='white' fill-opacity='0.45'/%3E%3Ccircle cx='170' cy='76' r='0.7' fill='white' fill-opacity='0.3'/%3E%3Ccircle cx='230' cy='90' r='1.2' fill='white' fill-opacity='0.5'/%3E%3Ccircle cx='295' cy='64' r='0.9' fill='white' fill-opacity='0.4'/%3E%3Ccircle cx='350' cy='92' r='0.8' fill='white' fill-opacity='0.35'/%3E%3Ccircle cx='38' cy='118' r='1.1' fill='white' fill-opacity='0.45'/%3E%3Ccircle cx='95' cy='140' r='0.7' fill='white' fill-opacity='0.3'/%3E%3Ccircle cx='160' cy='108' r='1.3' fill='white' fill-opacity='0.55'/%3E%3Ccircle cx='215' cy='130' r='0.9' fill='white' fill-opacity='0.4'/%3E%3Ccircle cx='278' cy='118' r='0.8' fill='white' fill-opacity='0.35'/%3E%3Ccircle cx='338' cy='145' r='1.0' fill='white' fill-opacity='0.45'/%3E%3Ccircle cx='392' cy='122' r='0.7' fill='white' fill-opacity='0.3'/%3E%3C/svg%3E");
  background-size: cover, 400px 300px;
  background-position: bottom center, top left;
  background-repeat: no-repeat, repeat;
  pointer-events: none;
  z-index: 0;
}

/* Curved white bottom reveal */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,.15);
  border: 1px solid rgba(200,169,110,.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  transition: all 250ms ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: #d4b578;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,110,.4);
}

.btn-hero-ghost {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.35);
  transition: all 250ms ease;
}

.btn-hero-ghost:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  display: block;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 380px;
}

.hero-card-float {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  padding: 28px;
  max-width: 360px;
  width: 100%;
}

.hero-card-float .job-preview-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero-card-float .job-preview-item:last-child { border-bottom: none; }

.job-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(200,169,110,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.job-preview-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.job-preview-meta {
  font-size: 11px;
  color: rgba(255,255,255,.5);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.8); }
}

/* ── Stat Bar ────────────────────────────────────────────────── */
.stat-bar {
  background: var(--navy);
  padding: 20px 0;
}

.stat-bar-item {
  text-align: center;
  position: relative;
}

.stat-bar-item + .stat-bar-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,.1);
}

.stat-bar-number {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-bar-label {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

/* ── Section Headers ─────────────────────────────────────────── */
.section-header {
  margin-bottom: 56px;
}

.section-header.text-center { text-align: center; }

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
}

.section-header.text-center .section-subtitle { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary-ob {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius);
  border: none;
  font-size: 14px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary-ob:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius);
  border: none;
  font-size: 14px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-outline-ob {
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  padding: 9px 24px;
  border-radius: var(--radius);
  border: 1.5px solid var(--navy);
  font-size: 14px;
  transition: all var(--transition);
}

.btn-outline-ob:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── Job Cards ───────────────────────────────────────────────── */
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 250ms ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
}

.job-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.job-card:hover::before { transform: scaleX(1); }

.job-card.featured-card::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.job-card-dept {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.job-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.job-card-company {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  margin-top: auto;
}

.job-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--off-white);
  padding: 4px 10px;
  border-radius: 6px;
}

.job-card-salary {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.job-card-actions {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ── How It Works ────────────────────────────────────────────── */
.step-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-connector {
  position: absolute;
  top: 68px;
  right: -50%;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 16px);
  opacity: .35;
}

/* ── Trust / Why Us ──────────────────────────────────────────── */
.trust-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.trust-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.trust-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  height: 100%;
}

.testimonial-card::before {
  content: '"';
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: .25;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  padding-top: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3d6e 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 80% 50%, rgba(200,169,110,.08) 0%, transparent 70%);
}

.cta-banner-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner-sub {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
}

/* ── Footer ──────────────────────────────────────────────────── */
.ob-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-top: 64px;
}

.footer-brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  max-width: 280px;
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li + li { margin-top: 8px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-text { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-bottom-cert {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  color: rgba(255,255,255,.35);
}

/* ── Page Header ─────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 8px;
}

.page-hero-breadcrumb .breadcrumb {
  margin: 0;
  padding: 0;
  background: none;
}

.page-hero-breadcrumb .breadcrumb-item { font-size: 13px; }
.page-hero-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.6); }
.page-hero-breadcrumb .breadcrumb-item.active { color: var(--gold); }
.page-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ── Job Detail ──────────────────────────────────────────────── */
.job-detail-header {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.job-detail-title { font-size: 1.8rem; color: var(--navy); margin-bottom: 6px; }
.job-detail-company { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; }

.job-info-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text);
  margin: 0 6px 8px 0;
}

.job-info-pill i { color: var(--teal); }

.job-section { margin-bottom: 28px; }
.job-section h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.job-section ul {
  padding-left: 20px;
  margin: 0;
}

.job-section li {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ── Forms ───────────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.form-card-title {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.form-card-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-control, .form-select {
  font-size: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(27,108,168,.12);
  outline: none;
}

textarea.form-control { resize: vertical; min-height: 120px; }

/* ── Auth Pages ──────────────────────────────────────────────── */
.auth-wrap {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3d6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.auth-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
}

.auth-logo { text-align: center; margin-bottom: 32px; }

.auth-logo .mark {
  width: 50px;
  height: 50px;
  background: var(--navy);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  font-weight: 800;
  font-family: 'DM Serif Display', serif;
  margin-bottom: 10px;
}

.auth-title { font-size: 1.5rem; color: var(--navy); margin-bottom: 4px; }
.auth-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }

/* ── About Page ──────────────────────────────────────────────── */
.team-card {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}

.team-card:hover { box-shadow: var(--shadow-md); }

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.team-name { font-size: 15px; font-weight: 700; color: var(--navy); }
.team-role { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }

.office-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

.office-city {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.office-hq-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  padding: 12px 16px 6px;
}

.accordion-button {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}

.accordion-button:not(.collapsed) {
  background: var(--teal-light);
  color: var(--navy);
  box-shadow: none;
}

.accordion-button:focus { box-shadow: 0 0 0 3px rgba(27,108,168,.15); }
.accordion-body { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-info-value { font-size: 14px; color: var(--text-muted); }

/* ── AI Chat Widget ──────────────────────────────────────────── */
.ai-widget-trigger {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(11,31,58,.35);
  z-index: 9998;
  border: none;
  transition: all 250ms ease;
  color: var(--gold);
  font-size: 22px;
}

.ai-widget-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(11,31,58,.45);
}

.ai-widget-trigger .ai-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--white);
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
}

.ai-chat-panel {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 360px;
  max-height: 520px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(.92) translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: all 250ms cubic-bezier(.34,1.56,.64,1);
}

.ai-chat-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.ai-chat-header {
  background: var(--navy);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ai-chat-header-icon {
  width: 34px;
  height: 34px;
  background: rgba(200,169,110,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
}

.ai-chat-header-title { font-size: 14px; font-weight: 700; color: var(--white); }
.ai-chat-header-sub   { font-size: 11px; color: rgba(255,255,255,.5); }

.ai-chat-header-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color var(--transition);
}
.ai-chat-header-close:hover { color: var(--white); }

.ai-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
}

.ai-msg {
  max-width: 85%;
  font-size: 13px;
  line-height: 1.6;
  border-radius: 12px;
  padding: 10px 14px;
}

.ai-msg-bot {
  background: var(--off-white);
  color: var(--text);
  border-radius: 4px 12px 12px 12px;
  align-self: flex-start;
}

.ai-msg-user {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px 4px 12px 12px;
  align-self: flex-end;
}

.ai-msg-typing {
  background: var(--off-white);
  border-radius: 4px 12px 12px 12px;
  padding: 12px 16px;
  align-self: flex-start;
  display: flex;
  gap: 4px;
  align-items: center;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typingDot 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: .2s; }
.typing-dot:nth-child(3) { animation-delay: .4s; }

@keyframes typingDot {
  0%,60%,100% { opacity: .4; transform: translateY(0); }
  30%         { opacity: 1;  transform: translateY(-4px); }
}

.ai-chat-input-wrap {
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.ai-chat-input {
  flex: 1;
  font-size: 13px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  resize: none;
  font-family: inherit;
  transition: border-color var(--transition);
  max-height: 100px;
}
.ai-chat-input:focus { outline: none; border-color: var(--teal); }

.ai-chat-send {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border: none;
  border-radius: 8px;
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.ai-chat-send:hover { background: var(--navy-mid); transform: scale(1.05); }

.ai-suggestions {
  padding: 0 14px 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ai-suggestion-chip {
  font-size: 11px;
  background: var(--teal-light);
  color: var(--teal);
  padding: 5px 10px;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid #cce3f5;
  transition: all var(--transition);
}
.ai-suggestion-chip:hover { background: var(--teal); color: var(--white); }

/* ── Status Badge ────────────────────────────────────────────── */
.status-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero { min-height: auto; padding: 60px 0 80px; }
  .hero::after { display: none; }
  .hero-stats { gap: 24px; }
  .section-pad { padding: 56px 0; }
  .ai-chat-panel { width: calc(100vw - 32px); right: 16px; }
  .step-connector { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   MARITIME IMAGERY — Ocean waves, ship silhouettes, horizon lines
   ════════════════════════════════════════════════════════════════ */

/* ── Hero ship (index page) — position only, JS drives movement ── */
.hero-ship-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55vw;
  max-width: 780px;
  min-width: 320px;
  z-index: 1;
  pointer-events: none;
}

.hero-ship-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.55));
}

/* ── Page-hero ship (inner pages — injected + moved by JS) ────── */
.page-hero-ship {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48vw;
  max-width: 680px;
  min-width: 260px;
  z-index: 1;
  pointer-events: none;
}

.page-hero-ship img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.5));
}

/* ── Keep all hero text/content above sailing ship ──────────── */
.hero > .container,
.page-hero > .container {
  position: relative;
  z-index: 2;
}

/* ── Hero visual column (job card) ──────────────────────────── */
.hero-visual {
  align-items: flex-start;
  padding-top: 20px;
}

.hero-card-float {
  position: relative;
  z-index: 2;
}

/* ── Page Hero (inner pages) ────────────────────────────────────
   Rich ocean night scene — visible horizon glow, wave band,
   and a distant ship silhouette on the right quarter
   ─────────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 52px;
  /* Layered: ship silhouette + wave crest + ocean + sky gradient */
  background:
    /* Small distant ship on horizon (right side) */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 260' preserveAspectRatio='xMidYMax meet'%3E%3C!-- Horizon ocean glow --%3E%3Cellipse cx='720' cy='260' rx='820' ry='30' fill='rgba(27%2C108%2C168%2C0.18)'/%3E%3C!-- Horizon gold shimmer line --%3E%3Cpath fill='rgba(200%2C169%2C110%2C0.12)' d='M0 238 Q360 230 720 234 Q1080 238 1440 232 L1440 244 Q1080 250 720 246 Q360 242 0 248Z'/%3E%3C!-- Ocean swell layer 1 --%3E%3Cpath fill='rgba(11%2C31%2C58%2C0.6)' d='M0 248 Q240 238 480 244 Q720 250 960 242 Q1200 234 1440 240 L1440 260 L0 260Z'/%3E%3C!-- Ocean swell layer 2 (lighter crest) --%3E%3Cpath fill='rgba(27%2C108%2C168%2C0.22)' d='M0 252 Q200 244 400 249 Q600 254 800 247 Q1000 240 1200 246 Q1320 250 1440 246 L1440 260 L0 260Z'/%3E%3C!-- Wave crests --%3E%3Cpath fill='none' stroke='rgba(255%2C255%2C255%2C0.12)' stroke-width='1.8' d='M0 245 Q240 236 480 242 Q720 248 960 240 Q1200 232 1440 238'/%3E%3Cpath fill='none' stroke='rgba(255%2C255%2C255%2C0.07)' stroke-width='1.2' d='M0 252 Q200 245 400 250 Q600 255 800 248 Q1000 241 1200 247 Q1320 251 1440 248'/%3E%3C!-- Distant ship silhouette (right quarter) --%3E%3Cg transform='translate(1060 190) scale(0.38)'%3E%3C!-- hull --%3E%3Cpath d='M0 80 Q180 70 360 80 L340 100 Q180 108 20 100Z' fill='rgba(200%2C169%2C110%2C0.18)'/%3E%3C!-- super --%3E%3Crect x='40' y='30' width='280' height='50' fill='rgba(255%2C255%2C255%2C0.10)'/%3E%3Crect x='70' y='5' width='180' height='30' fill='rgba(255%2C255%2C255%2C0.08)'/%3E%3C!-- funnel --%3E%3Crect x='160' y='-18' width='28' height='28' rx='3' fill='rgba(200%2C169%2C110%2C0.22)'/%3E%3C!-- windows --%3E%3Cg fill='rgba(200%2C169%2C110%2C0.3)'%3E%3Crect x='60' y='45' width='8' height='6'/%3E%3Crect x='76' y='45' width='8' height='6'/%3E%3Crect x='92' y='45' width='8' height='6'/%3E%3Crect x='108' y='45' width='8' height='6'/%3E%3Crect x='124' y='45' width='8' height='6'/%3E%3Crect x='140' y='45' width='8' height='6'/%3E%3Crect x='156' y='45' width='8' height='6'/%3E%3Crect x='172' y='45' width='8' height='6'/%3E%3Crect x='188' y='45' width='8' height='6'/%3E%3Crect x='204' y='45' width='8' height='6'/%3E%3Crect x='220' y='45' width='8' height='6'/%3E%3Crect x='236' y='45' width='8' height='6'/%3E%3Crect x='252' y='45' width='8' height='6'/%3E%3Crect x='268' y='45' width='8' height='6'/%3E%3Crect x='284' y='45' width='8' height='6'/%3E%3C/g%3E%3C!-- portholes --%3E%3Cg fill='rgba(27%2C108%2C168%2C0.35)'%3E%3Ccircle cx='60' cy='70' r='4'/%3E%3Ccircle cx='80' cy='70' r='4'/%3E%3Ccircle cx='100' cy='70' r='4'/%3E%3Ccircle cx='120' cy='70' r='4'/%3E%3Ccircle cx='140' cy='70' r='4'/%3E%3Ccircle cx='160' cy='70' r='4'/%3E%3Ccircle cx='180' cy='70' r='4'/%3E%3Ccircle cx='200' cy='70' r='4'/%3E%3Ccircle cx='220' cy='70' r='4'/%3E%3Ccircle cx='240' cy='70' r='4'/%3E%3Ccircle cx='260' cy='70' r='4'/%3E%3Ccircle cx='280' cy='70' r='4'/%3E%3Ccircle cx='300' cy='70' r='4'/%3E%3Ccircle cx='320' cy='70' r='4'/%3E%3C/g%3E%3C!-- lifeboats --%3E%3Cellipse cx='70' cy='82' rx='18' ry='6' fill='rgba(224%2C83%2C26%2C0.5)'/%3E%3Cellipse cx='110' cy='82' rx='18' ry='6' fill='rgba(224%2C83%2C26%2C0.5)'/%3E%3C/g%3E%3C/svg%3E")
    no-repeat bottom center / 100% auto,
    /* Sky gradient */
    linear-gradient(170deg, #040d1a 0%, #071628 30%, #0a1e38 60%, #081630 100%);
}

/* Gold horizon accent bar at top */
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 25%, var(--gold) 75%, transparent 100%);
  opacity: 0.55;
  z-index: 2;
}

/* Moon/light orb — top-right atmospheric glow */
.page-hero::after {
  content: '';
  position: absolute;
  top: -40px; right: 8%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,232,184,.10) 0%, rgba(244,232,184,.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ── Page-hero content must sit above layers ── */
.page-hero > .container { position: relative; z-index: 3; }

/* Variant: Careers — more vivid teal-blue ocean */
.page-hero--careers {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 260' preserveAspectRatio='xMidYMax meet'%3E%3Cellipse cx='720' cy='260' rx='820' ry='28' fill='rgba(27%2C108%2C168%2C0.25)'/%3E%3Cpath fill='rgba(11%2C31%2C58%2C0.55)' d='M0 244 Q300 232 600 240 Q900 248 1200 238 Q1320 234 1440 238 L1440 260 L0 260Z'/%3E%3Cpath fill='rgba(27%2C108%2C168%2C0.3)' d='M0 250 Q240 242 480 248 Q720 254 960 246 Q1200 238 1440 244 L1440 260 L0 260Z'/%3E%3Cpath fill='none' stroke='rgba(255%2C255%2C255%2C0.14)' stroke-width='2' d='M0 242 Q300 231 600 238 Q900 245 1200 236 Q1320 232 1440 236'/%3E%3Cpath fill='none' stroke='rgba(255%2C255%2C255%2C0.07)' stroke-width='1.2' d='M0 252 Q360 244 720 250 Q1080 256 1440 248'/%3E%3Cg transform='translate(980 188) scale(0.32)'%3E%3Cpath d='M0 80 Q180 70 360 80 L340 100 Q180 108 20 100Z' fill='rgba(200%2C169%2C110%2C0.2)'/%3E%3Crect x='40' y='30' width='280' height='50' fill='rgba(255%2C255%2C255%2C0.11)'/%3E%3Crect x='80' y='5' width='180' height='28' fill='rgba(255%2C255%2C255%2C0.09)'/%3E%3Crect x='168' y='-14' width='24' height='24' rx='3' fill='rgba(200%2C169%2C110%2C0.25)'/%3E%3Cg fill='rgba(200%2C169%2C110%2C0.32)'%3E%3Crect x='60' y='45' width='8' height='6'/%3E%3Crect x='76' y='45' width='8' height='6'/%3E%3Crect x='92' y='45' width='8' height='6'/%3E%3Crect x='108' y='45' width='8' height='6'/%3E%3Crect x='124' y='45' width='8' height='6'/%3E%3Crect x='140' y='45' width='8' height='6'/%3E%3Crect x='156' y='45' width='8' height='6'/%3E%3Crect x='172' y='45' width='8' height='6'/%3E%3Crect x='188' y='45' width='8' height='6'/%3E%3Crect x='204' y='45' width='8' height='6'/%3E%3Crect x='220' y='45' width='8' height='6'/%3E%3Crect x='236' y='45' width='8' height='6'/%3E%3C/g%3E%3Cg fill='rgba(27%2C108%2C168%2C0.4)'%3E%3Ccircle cx='60' cy='70' r='4'/%3E%3Ccircle cx='80' cy='70' r='4'/%3E%3Ccircle cx='100' cy='70' r='4'/%3E%3Ccircle cx='120' cy='70' r='4'/%3E%3Ccircle cx='140' cy='70' r='4'/%3E%3Ccircle cx='160' cy='70' r='4'/%3E%3Ccircle cx='180' cy='70' r='4'/%3E%3Ccircle cx='200' cy='70' r='4'/%3E%3Ccircle cx='220' cy='70' r='4'/%3E%3Ccircle cx='240' cy='70' r='4'/%3E%3Ccircle cx='260' cy='70' r='4'/%3E%3Ccircle cx='280' cy='70' r='4'/%3E%3C/g%3E%3Cellipse cx='70' cy='82' rx='18' ry='6' fill='rgba(224%2C83%2C26%2C0.55)'/%3E%3Cellipse cx='110' cy='82' rx='18' ry='6' fill='rgba(224%2C83%2C26%2C0.55)'/%3E%3C/g%3E%3C/svg%3E")
    no-repeat bottom center / 100% auto,
    linear-gradient(170deg, #030b17 0%, #061422 28%, #091b35 58%, #071528 100%);
}

/* Variant: Verify Agent — gold-accent horizon */
.page-hero--verify {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 260' preserveAspectRatio='xMidYMax meet'%3E%3Cellipse cx='720' cy='260' rx='820' ry='25' fill='rgba(200%2C169%2C110%2C0.12)'/%3E%3Cpath fill='rgba(200%2C169%2C110%2C0.08)' d='M0 236 Q360 224 720 232 Q1080 240 1440 228 L1440 248 Q1080 260 720 252 Q360 244 0 256Z'/%3E%3Cpath fill='rgba(11%2C31%2C58%2C0.5)' d='M0 246 Q320 236 640 243 Q960 250 1280 240 Q1360 236 1440 238 L1440 260 L0 260Z'/%3E%3Cpath fill='none' stroke='rgba(200%2C169%2C110%2C0.18)' stroke-width='1.8' d='M0 234 Q360 222 720 230 Q1080 238 1440 226'/%3E%3Cpath fill='none' stroke='rgba(255%2C255%2C255%2C0.06)' stroke-width='1.2' d='M0 248 Q400 240 800 246 Q1100 252 1440 244'/%3E%3C/svg%3E")
    no-repeat bottom center / 100% auto,
    linear-gradient(170deg, #040c1c 0%, #071628 35%, #0b2040 65%, #07152c 100%);
}

/* ── Ocean wave section divider ──────────────────────────────── */
.wave-divider {
  position: relative;
  overflow: hidden;
}

.wave-divider::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23f7f9fc' d='M0 20l60 6.7C120 33 240 47 360 46.7 480 47 600 33 720 26.7 840 20 960 20 1080 26.7 1200 33 1320 47 1380 53.3l60 6.7V60H0z'/%3E%3C/svg%3E")
  no-repeat bottom center / cover;
}

/* ── Maritime-textured section backgrounds ───────────────────── */
.section-maritime {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='1' fill='%230B1F3A' fill-opacity='0.04'/%3E%3Ccircle cx='0' cy='0' r='1' fill='%230B1F3A' fill-opacity='0.04'/%3E%3Ccircle cx='100' cy='0' r='1' fill='%230B1F3A' fill-opacity='0.04'/%3E%3Ccircle cx='0' cy='100' r='1' fill='%230B1F3A' fill-opacity='0.04'/%3E%3Ccircle cx='100' cy='100' r='1' fill='%230B1F3A' fill-opacity='0.04'/%3E%3C/svg%3E"),
    var(--off-white);
}

/* ── Fee transparency section (homepage/about) ───────────────── */
.fee-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.fee-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.fee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  border-radius: 0 0 0 var(--radius-lg);
}

.fee-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 20px;
  margin-bottom: 14px;
}

.fee-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.fee-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.fee-card-range {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
}

.fee-card-body {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.fee-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

/* Agent card on verify page */
.agent-verify-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #d4edda;
  color: #155724;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* FAQ category header */
.faq-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  padding: 16px 0 10px;
  border-bottom: 2px solid var(--gold-pale);
  margin-bottom: 10px;
}

/* ── Testimonial Cards ──────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 220ms ease, transform 220ms ease;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(11,31,58,.10);
  transform: translateY(-3px);
}
.testimonial-quote-icon {
  font-size: 4rem;
  line-height: 1;
  color: var(--teal);
  opacity: .18;
  font-family: Georgia, serif;
  position: absolute;
  top: 14px;
  left: 22px;
}
.testimonial-text {
  font-size: .91rem;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
  margin-bottom: 16px;
  padding-top: 8px;
}
.testimonial-stars {
  color: #f4b942;
  font-size: .8rem;
  letter-spacing: 2px;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal);
  flex-shrink: 0;
}
.testimonial-avatar-placeholder {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-role {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.testimonial-role span {
  color: var(--teal);
  font-weight: 600;
}
.testimonial-country {
  font-size: .74rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}
