/* ============================================================
   REGUS MARINE – style.css  v2.0
   Deep Navy + Gold Maritime Corporate  |  Inspired by Navigator / ARM / Ceyline
   ============================================================ */

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

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --navy-900:   #05101f;
  --navy-800:   #0a1628;
  --navy-700:   #0d1f42;
  --navy-600:   #0d2b5e;
  --navy-500:   #163578;
  --navy-400:   #1d4396;
  --gold-600:   #a07d10;
  --gold-500:   #c9a227;
  --gold-400:   #e8b930;
  --gold-300:   #f0c040;
  --gold-200:   #f5d876;
  --white:      #ffffff;
  --slate-100:  #0f172a;
  --slate-300:  #334155;
  --slate-500:  #475569;
  --slate-700:  #94a3b8;
  --success:    #34d399;
  --warning:    #fb923c;
  --surface-a:  #ffffff;
  --surface-b:  #f8fafc;
  --border:     rgba(13, 31, 66, 0.15);
  --border-hover: rgba(13, 31, 66, 0.4);
  --glow-gold:  0 10px 30px rgba(201, 162, 39, 0.12);
  --glow-gold-strong: 0 15px 40px rgba(201, 162, 39, 0.25);
  --shadow-xl:  0 20px 40px rgba(13, 31, 66, 0.08);
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;
  --r-full: 9999px;
  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --t:     0.35s;
  --font-h: 'Outfit', sans-serif;
  --font-b: 'Inter', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: #ffffff;
  color: var(--slate-100);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: var(--gold-500); border-radius: 3px; }
::selection { background: rgba(201,162,39,0.35); color: #fff; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-h); color: var(--navy-900); line-height: 1.18; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--slate-300);
  line-height: 1.85;
  max-width: 640px;
}

/* ── Dark Section Overrides ────────────────────────────────── */
#hero, #services, #seafarers, #contact, footer {
  color: #ffffff;
}
#hero h1, #hero .section-title,
#services .section-title,
#seafarers .section-title,
#contact .section-title,
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
  color: #ffffff;
}
#hero .section-sub, #services .section-sub, #seafarers .section-sub, #contact .section-sub, footer .section-sub {
  color: rgba(255, 255, 255, 0.7);
}
#hero .eyebrow, #services .eyebrow, #seafarers .eyebrow, #contact .eyebrow, footer .eyebrow {
  color: var(--gold-300);
}


/* ── Layout ────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 100px 0; position: relative; overflow: hidden; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-sub { margin: 0 auto; }

.gold-bar {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 2px;
  margin: 1.1rem auto 1.5rem;
}
.gold-bar.left { margin-left: 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2rem;
  border-radius: var(--r-sm);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t) var(--ease);
  letter-spacing: 0.01em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity var(--t);
}
.btn:hover::before { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-800);
  border-color: var(--gold-400);
  box-shadow: 0 4px 24px rgba(201,162,39,0.35);
}
.btn-gold:hover {
  box-shadow: 0 8px 36px rgba(201,162,39,0.55);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-300);
  border-color: var(--gold-500);
}
.btn-outline-gold:hover {
  background: rgba(201,162,39,0.1);
  box-shadow: 0 4px 20px rgba(201,162,39,0.2);
  transform: translateY(-2px);
}

.btn-white {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-white:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal, .reveal-l, .reveal-r {
  opacity: 0;
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal        { transform: translateY(40px); }
.reveal-l      { transform: translateX(-40px); }
.reveal-r      { transform: translateX(40px); }
.reveal.in, .reveal-l.in, .reveal-r.in { opacity: 1; transform: none; }

/* ── Cards ─────────────────────────────────────────────────── */
.glass {
  background: var(--surface-a);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-md);
  transition: all var(--t) var(--ease);
}
.glass:hover {
  background: rgba(22, 53, 120, 0.55);
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--glow-gold);
}

/* ======================================================
   NAVBAR
   ====================================================== */
#nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: all 0.4s var(--ease);
}
#nav.solid {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  padding: 0.7rem 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06), 0 1px 0 rgba(13,31,66,0.05);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

/* Logo */
.nav-brand { display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }
.nav-brand img { height: 50px; width: auto; transition: height var(--t); }
#nav.solid .nav-brand img { height: 42px; }
.brand-text { font-family: var(--font-h); font-size: 1.25rem; font-weight: 800; color: var(--gold-400); letter-spacing: 0.04em; line-height: 1.1; }
.brand-text small { display: block; font-size: 0.6rem; font-weight: 500; letter-spacing: 0.16em; color: rgba(255,255,255,0.7); text-transform: uppercase; margin-top: 2px; }
#nav.solid .brand-text small { color: var(--slate-500); }

/* Desktop links */
.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links a {
  font-family: var(--font-h);
  font-size: 0.87rem;
  font-weight: 500;
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-sm);
  transition: all var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy-600); background: rgba(13,31,66,0.06); }
#nav.solid .nav-links a { color: var(--navy-800); }
#nav.solid .nav-links a:hover, #nav.solid .nav-links a.active { color: var(--gold-500); background: rgba(201,162,39,0.09); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300)) !important;
  color: var(--navy-800) !important;
  font-weight: 700 !important;
  padding: 0.45rem 1.15rem !important;
  border-radius: var(--r-sm) !important;
}
.nav-cta:hover { box-shadow: 0 4px 18px rgba(201,162,39,0.4); background: none !important; }

/* Social icons in nav */
.nav-socials { display: flex; gap: 0.5rem; }
.nav-social-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  transition: all var(--t);
}
.nav-social-btn:hover { background: rgba(201,162,39,0.15); border-color: var(--gold-500); color: var(--gold-300); }
#nav.solid .nav-social-btn { color: var(--navy-800); border-color: rgba(13,31,66,0.15); }
#nav.solid .nav-social-btn:hover { border-color: var(--gold-500); color: var(--gold-500); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.4rem; background: transparent; border: none; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--gold-400); border-radius: 2px; transition: all var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mob-nav {
  display: none; position: fixed;
  inset: 0; z-index: 999;
  background: rgba(5,16,31,0.98);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.mob-nav.open { display: flex; }
.mob-nav a { font-family: var(--font-h); font-size: 1.35rem; font-weight: 600; color: var(--slate-100); padding: 0.75rem 2.5rem; border-radius: var(--r-sm); transition: all var(--t); width: 80%; text-align: center; }
.mob-nav a:hover { color: var(--gold-300); background: rgba(201,162,39,0.1); }
.mob-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem; color: var(--gold-400); background: none; border: none; cursor: pointer; line-height: 1; }

/* ======================================================
   HERO
   ====================================================== */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 0; overflow: hidden; }

.hero-bg-img {
  position: absolute; inset: 0;
  background: url('../images/hero_bg.jpg') center/cover no-repeat;
  z-index: 0;
  transform-origin: center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(125deg, rgba(5,16,31,0.93) 0%, rgba(10,22,40,0.80) 55%, rgba(13,43,94,0.65) 100%);
}

/* Animated particles/stars */
.hero-particles {
  position: absolute; inset: 0; z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-300);
  opacity: 0;
  animation: float-particle 8s infinite;
}

@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(0) scale(0.5); }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-120px) scale(1); }
}

.hero-content { position: relative; z-index: 3; width: 100%; padding: 150px 0 90px; }

/* Animated wave line */
.hero-wave-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}
.wave-dot { width: 8px; height: 8px; background: var(--gold-400); border-radius: 50%; animation: wave-pulse 2s ease infinite; }
.wave-dot:nth-child(2) { animation-delay: 0.2s; }
.wave-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes wave-pulse { 0%,100% { transform: translateY(0); opacity:1; } 50% { transform: translateY(-5px); opacity:0.5; } }

.hero-label {
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.hero-h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-h1 .highlight {
  background: linear-gradient(120deg, var(--gold-400), var(--gold-200));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.85;
  animation: fadeInUp 0.9s ease 0.35s both;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInUp 0.9s ease 0.5s both; }
.hero-btns .btn { font-size: 1rem; padding: 1rem 2.25rem; }

/* Trust bar */
.hero-trust {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,162,39,0.18);
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.65s both;
}
.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-icon { font-size: 1.6rem; }
.trust-text-group { display: flex; flex-direction: column; }
.trust-number { font-family: var(--font-h); font-size: 1.7rem; font-weight: 900; color: var(--gold-300); line-height: 1; }
.trust-label { font-size: 0.72rem; color: rgba(255, 255, 255, 0.7); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.15rem; }

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  z-index: 3; animation: fadeIn 1.5s ease 1s both;
}
.scroll-mouse { width: 22px; height: 36px; border: 2px solid rgba(201,162,39,0.4); border-radius: 11px; position: relative; }
.scroll-mouse::after {
  content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; background: var(--gold-400); border-radius: 2px;
  animation: scroll-dot 1.8s ease infinite;
}
@keyframes scroll-dot { 0%{opacity:1;transform:translateX(-50%) translateY(0)} 100%{opacity:0;transform:translateX(-50%) translateY(13px)} }

@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:none} }
@keyframes fadeInUp   { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:none} }
@keyframes fadeIn     { from{opacity:0} to{opacity:1} }

/* ======================================================
   WHY REGUS MARINE – Trust Cards (inspired by Navigator)
   ====================================================== */
#why {
  background: #ffffff;
  overflow: hidden;
}
#why::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,162,39,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.why-card {
  padding: 2.25rem 1.75rem;
  text-align: center;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  cursor: default;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(13, 31, 66, 0.05);
  border: 1px solid var(--border);
  transition: all var(--t) var(--ease);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0;
  transition: opacity var(--t);
}
.why-card:hover { transform: translateY(-8px); border-color: var(--border-hover); box-shadow: var(--glow-gold); }
.why-card:hover::before { opacity: 1; }

.why-icon {
  width: 78px; height: 78px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(145deg, rgba(201,162,39,0.18), rgba(201,162,39,0.06));
  border: 1px solid rgba(201,162,39,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  transition: all var(--t);
}
.why-card:hover .why-icon { transform: scale(1.12) rotate(-5deg); box-shadow: 0 0 24px rgba(201,162,39,0.3); }

.why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy-900); margin-bottom: 0.6rem; }
.why-card p  { font-size: 0.85rem; color: var(--slate-300); line-height: 1.75; }

/* ======================================================
   ABOUT
   ====================================================== */
#about { background: #f8fafc; }
#about::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.25), transparent);
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.about-desc { font-size: 1rem; color: var(--slate-300); line-height: 1.9; margin-bottom: 1.25rem; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}
.stat-box {
  padding: 1.25rem;
  background: rgba(201,162,39,0.07);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: var(--r-sm);
  text-align: center;
}
.stat-box .s-num { font-family: var(--font-h); font-size: 2rem; font-weight: 900; color: var(--gold-300); line-height: 1; }
.stat-box .s-lbl { font-size: 0.72rem; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 0.3rem; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin-top: 2rem; }
.val-tag {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.65rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.88rem; color: var(--slate-100); font-weight: 500;
  transition: all var(--t);
}
.val-tag:hover { border-color: rgba(201,162,39,0.3); background: rgba(201,162,39,0.06); }
.val-tag .vi { font-size: 1rem; }

.vm-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.vm-card {
  padding: 1.75rem 2rem;
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.vm-card h4 { font-size: 1.02rem; font-weight: 700; color: var(--gold-300); margin-bottom: 0.55rem; display: flex; align-items: center; gap: 0.5rem; }
.vm-card p  { font-size: 0.93rem; color: var(--slate-300); line-height: 1.8; }

/* ======================================================
   SERVICES
   ====================================================== */
#services { background: #ffffff; }

.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

.svc-card {
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: var(--r-md);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(13, 31, 66, 0.05);
  border: 1px solid var(--border);
  transition: all var(--t) var(--ease);
  cursor: default;
}
.svc-card:hover { transform: translateY(-7px); border-color: var(--border-hover); box-shadow: var(--glow-gold); background: rgba(22,53,120,0.5); }

.svc-icon {
  width: 66px; height: 66px;
  margin: 0 auto 1.2rem;
  background: radial-gradient(circle, rgba(201,162,39,0.18), rgba(201,162,39,0.04));
  border: 1px solid rgba(201,162,39,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  transition: all var(--t);
}
.svc-card:hover .svc-icon { transform: scale(1.12); border-color: var(--gold-500); box-shadow: 0 0 20px rgba(201,162,39,0.25); }
.svc-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--navy-900); margin-bottom: 0.55rem; transition: color var(--t); }
.svc-card p  { font-size: 0.83rem; color: var(--slate-300); line-height: 1.75; transition: color var(--t); }
.svc-card:hover h3 { color: #ffffff; }
.svc-card:hover p { color: rgba(255, 255, 255, 0.85); }

/* ======================================================
   FOR SHIPOWNERS
   ====================================================== */
#shipowners {
  background: #f8fafc;
  position: relative;
}
#shipowners::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }

.feat-list { display: flex; flex-direction: column; gap: 0.85rem; margin: 2rem 0; }
.feat-item {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: all var(--t);
}
.feat-item:hover { border-color: var(--border-hover); background: rgba(201,162,39,0.05); }
.feat-check {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800); font-size: 0.75rem; font-weight: 800;
  flex-shrink: 0; margin-top: 1px;
}
.feat-item p { font-size: 0.9rem; color: var(--slate-100); }

.cta-panel {
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(201,162,39,0.1), rgba(201,162,39,0.03));
  border: 1px solid rgba(201,162,39,0.28);
  border-radius: var(--r-lg);
}
.cta-panel h3 { font-size: 1.45rem; font-weight: 800; color: var(--navy-900); margin-bottom: 1rem; }
.cta-panel p  { font-size: 0.93rem; color: var(--slate-300); line-height: 1.85; margin-bottom: 1.5rem; }
.cta-panel .fine { font-size: 0.8rem; color: var(--slate-500); line-height: 1.7; border-top: 1px solid rgba(201,162,39,0.15); padding-top: 1rem; margin-top: 1.25rem; }

/* ======================================================
   FOR SEAFARERS
   ====================================================== */
#seafarers { background: #ffffff; }

.docs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin: 1.5rem 0 2rem; }
.doc-tag {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.83rem; color: var(--slate-100);
  transition: all var(--t);
}
.doc-tag:hover { border-color: var(--border-hover); color: var(--gold-200); }
.doc-dot { width: 6px; height: 6px; background: var(--gold-400); border-radius: 50%; flex-shrink: 0; }

.note-box {
  padding: 1rem 1.25rem;
  background: rgba(201,162,39,0.06);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: var(--r-sm);
  font-size: 0.82rem; color: var(--slate-500); line-height: 1.75; font-style: italic;
  margin-top: 1.5rem;
}

.sf-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ======================================================
   PERSONNEL & VESSELS
   ====================================================== */
#personnel { background: #f8fafc; }

.tabs {
  display: flex; gap: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 4px;
  width: fit-content;
  margin-bottom: 2.5rem;
}
.tab-btn {
  padding: 0.6rem 1.5rem;
  border: none; background: transparent;
  color: var(--slate-500);
  font-family: var(--font-h); font-weight: 600; font-size: 0.88rem;
  cursor: pointer;
  border-radius: calc(var(--r-md) - 4px);
  transition: all var(--t);
  white-space: nowrap;
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-800);
  box-shadow: 0 2px 12px rgba(201,162,39,0.3);
}
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.rank-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.65rem; }
.rank-tag {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.8rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.87rem; color: var(--slate-100);
  transition: all var(--t);
}
.rank-tag:hover { border-color: var(--border-hover); color: var(--gold-200); }
.rank-star { color: var(--gold-400); font-size: 0.7rem; }

.vessels-block { margin-top: 3.5rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.vessels-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 1.5rem; }
.vessel-card {
  padding: 1.25rem 1rem; text-align: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: all var(--t);
}
.vessel-card:hover { border-color: var(--border-hover); background: rgba(201,162,39,0.05); }
.vessel-em { font-size: 2rem; margin-bottom: 0.6rem; }
.vessel-card p { font-size: 0.82rem; color: var(--slate-300); font-weight: 500; }

/* ======================================================
   RECRUITMENT PROCESS
   ====================================================== */
#process { background: #ffffff; overflow: hidden; }
#process::before {
  content: '';
  position: absolute; top: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.steps { display: grid; grid-template-columns: repeat(7,1fr); gap: 0; margin-top: 3.5rem; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 40px; left: calc(100%/14); right: calc(100%/14);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
  z-index: 0;
}
.step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; padding: 0 0.5rem; }
.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 800; font-size: 1.15rem; color: var(--navy-800);
  margin-bottom: 1.2rem;
  box-shadow: 0 0 0 6px rgba(201,162,39,0.12);
  transition: all var(--t);
}
.step:hover .step-num { transform: scale(1.14); box-shadow: 0 0 0 8px rgba(201,162,39,0.2), 0 8px 28px rgba(201,162,39,0.45); }
.step-lbl { font-family: var(--font-h); font-size: 0.8rem; font-weight: 700; color: var(--navy-900); margin-bottom: 0.35rem; }
.step-desc { font-size: 0.73rem; color: var(--slate-500); line-height: 1.55; }

/* ======================================================
   VACANCIES
   ====================================================== */
#vacancies { background: #f8fafc; }

.vac-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.vac-card {
  padding: 1.75rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 4px 20px rgba(13, 31, 66, 0.05);
  transition: all var(--t) var(--ease);
}
.vac-card:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: var(--glow-gold); }

.vac-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.25rem; }
.vac-pos  { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; color: var(--navy-900); }
.vac-ship { font-size: 0.81rem; color: var(--slate-500); margin-top: 0.2rem; }

.badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.22rem 0.7rem;
  border-radius: var(--r-full);
  font-size: 0.7rem; font-weight: 700; white-space: nowrap; flex-shrink: 0;
}
.badge-green  { background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.3); color: #34d399; }
.badge-orange { background: rgba(251,146,60,0.12);  border: 1px solid rgba(251,146,60,0.3);  color: #fb923c; }
.badge-slate  { background: rgba(100,116,139,0.12); border: 1px solid rgba(100,116,139,0.3); color: #94a3b8; }

.vac-details { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1rem; }
.vd { display: flex; flex-direction: column; }
.vd-lbl { font-size: 0.68rem; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.1rem; }
.vd-val { font-size: 0.87rem; color: var(--slate-100); font-weight: 500; }

.vac-foot { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); }

.warn-box {
  margin-top: 2.5rem;
  padding: 1.2rem 1.5rem;
  background: rgba(251,146,60,0.06);
  border: 1px solid rgba(251,146,60,0.2);
  border-radius: var(--r-sm);
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.85rem; color: var(--slate-300);
}
.warn-icon { color: var(--warning); font-size: 1.2rem; flex-shrink: 0; }

/* ======================================================
   COMPLIANCE
   ====================================================== */
#compliance { background: #ffffff; }

.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }

.standards { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.std-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: all var(--t);
}
.std-item:hover { border-color: var(--border-hover); }
.std-em { font-size: 1.4rem; flex-shrink: 0; }
.std-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--gold-200); margin-bottom: 0.15rem; }
.std-item p  { font-size: 0.81rem; color: var(--slate-500); }

.lic-cards { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.5rem; }
.lic-card {
  padding: 1.15rem 1.5rem;
  background: rgba(201,162,39,0.06);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: var(--r-sm);
}
.lic-lbl { font-size: 0.68rem; color: var(--gold-400); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 0.2rem; }
.lic-val { font-size: 0.93rem; color: var(--slate-100); font-weight: 500; }

.comp-note {
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  background: rgba(201,162,39,0.04);
  border: 1px solid rgba(201,162,39,0.14);
  border-radius: var(--r-sm);
  font-size: 0.82rem; color: var(--slate-500); line-height: 1.75; font-style: italic;
}

/* ======================================================
   FAQ
   ====================================================== */
#faq { background: #f8fafc; }
.faq-wrap { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.7rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #ffffff;
  overflow: hidden;
  transition: all var(--t);
}
.faq-item.open { border-color: var(--border-hover); background: #f8fafc; }

.faq-q {
  width: 100%; padding: 1.2rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: transparent; border: none; cursor: pointer; text-align: left;
}
.faq-q-text { font-family: var(--font-h); font-size: 1rem; font-weight: 600; color: var(--navy-900); }
.faq-arr {
  width: 30px; height: 30px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400); flex-shrink: 0;
  font-size: 0.9rem;
  transition: all var(--t);
}
.faq-item.open .faq-arr { transform: rotate(180deg); background: rgba(201,162,39,0.2); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 280px; }
.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid rgba(201,162,39,0.1);
  padding-top: 1rem;
  font-size: 0.92rem; color: var(--slate-300); line-height: 1.85;
}

/* ======================================================
   CONTACT
   ====================================================== */
#contact { background: linear-gradient(170deg, var(--navy-800), var(--navy-700)); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4.5rem; align-items: start; }

.contact-items { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.75rem; }
.ci {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-sm);
  transition: all var(--t);
}
.ci:hover { border-color: var(--border-hover); }
.ci-icon {
  width: 38px; height: 38px;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.22);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.ci-lbl { font-size: 0.68rem; color: var(--gold-400); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 0.18rem; }
.ci-val { font-size: 0.9rem; color: var(--slate-100); }

/* Form */
.form-box {
  padding: 2.5rem;
  background: var(--navy-900);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
}
.form-box h3 { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }

.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1rem; }
.fg label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 0.4rem; }
.fg input, .fg select, .fg textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: var(--font-b); font-size: 0.92rem;
  transition: all var(--t);
  outline: none;
  -webkit-appearance: none; appearance: none;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a227' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: rgba(255,255,255,0.05);
  padding-right: 2.5rem;
}
.fg select option { background: var(--navy-700); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold-500);
  background: rgba(201,162,39,0.05);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--slate-500); }
.fg textarea { resize: vertical; min-height: 100px; }

.hp-f { display: none !important; }
.form-err { font-size: 0.76rem; color: #f87171; margin-top: 0.3rem; display: none; }
.form-err.show { display: block; }
.form-ok {
  display: none;
  padding: 1.1rem;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: var(--r-sm);
  color: #34d399;
  font-size: 0.92rem;
  margin-top: 0.75rem;
  text-align: center;
}
.form-ok.show { display: block; }
.btn-submit { width: 100%; padding: 1rem; font-size: 1rem; justify-content: center; }

/* ======================================================
   FOOTER
   ====================================================== */
#footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(201,162,39,0.13);
  padding: 3.5rem 0 1.5rem;
}

.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }

.foot-brand img { height: 52px; width: auto; margin-bottom: 1rem; }
.foot-brand p   { font-size: 0.84rem; color: rgba(255, 255, 255, 0.7); line-height: 1.85; max-width: 270px; }

.foot-socials { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.fsoc {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.7);
  transition: all var(--t);
}
.fsoc:hover { background: rgba(201,162,39,0.15); border-color: var(--gold-500); color: var(--gold-300); }

.foot-col h4 { font-size: 0.8rem; font-weight: 700; color: var(--gold-400); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1rem; }
.foot-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.foot-col ul li a { font-size: 0.84rem; color: rgba(255, 255, 255, 0.7); transition: color var(--t); }
.foot-col ul li a:hover { color: var(--gold-200); }

.foot-bottom {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1.5rem; padding-top: 1.5rem; flex-wrap: wrap;
}
.foot-copy { font-size: 0.8rem; color: rgba(255, 255, 255, 0.7); }
.foot-copy .g { color: var(--gold-400); font-weight: 600; }
.foot-disc { font-size: 0.74rem; color: rgba(255, 255, 255, 0.4); line-height: 1.75; max-width: 580px; font-style: italic; }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1100px) {
  .why-grid       { grid-template-columns: repeat(2,1fr); }
  .services-grid  { grid-template-columns: repeat(2,1fr); }
  .rank-grid      { grid-template-columns: repeat(3,1fr); }
  .vessels-grid   { grid-template-columns: repeat(3,1fr); }
  .steps          { grid-template-columns: repeat(4,1fr); }
  .steps::before  { display: none; }
  .vac-grid       { grid-template-columns: repeat(2,1fr); }
  .foot-grid      { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  section { padding: 72px 0; }
  .about-grid, .two-col, .contact-grid, .comp-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav-links, .nav-socials { display: none; }
  .hamburger { display: flex; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stats-row { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 640px) {
  .container { padding: 0 1.2rem; }
  section { padding: 60px 0; }
  .why-grid, .services-grid { grid-template-columns: 1fr; }
  .rank-grid { grid-template-columns: 1fr; }
  .vessels-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .vac-grid { grid-template-columns: 1fr; }
  .docs-grid, .values-grid, .row-2 { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-trust { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; }
  .tabs { flex-direction: column; width: 100%; gap: 0.5rem; background: transparent; border: none; padding: 0; }
  .tab-btn { width: 100%; text-align: center; padding: 0.8rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); }
  .tab-btn.active { background: linear-gradient(135deg, var(--gold-500), var(--gold-300)); color: var(--navy-800); }
  .stats-row { grid-template-columns: 1fr; }
  .form-box { padding: 1.5rem; }
  .hero-content { padding: 120px 0 60px; }
  .nav-brand img { height: 40px; }
  .brand-text { font-size: 1.1rem; }
}
/* -- Parallax Backgrounds ------------------------------------ */
.bg-parallax {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,16,31,0.92) 0%, rgba(13,43,94,0.88) 100%);
  z-index: 1;
}
.bg-parallax > .container {
  position: relative;
  z-index: 2;
}
