/* ══════════════════════════════════════════════════════
   GLOBAL SEAFARERS CENTRES — Stylesheet
   Theme: Light Blue Ocean
   ══════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --abyss:        #010810;       /* kept dark — splash only */
  --deep:         #cce7f8;
  --ocean-dark:   #dff2fc;
  --ocean-mid:    #aad5f0;
  --ocean-surf:   #7bbde8;
  --horizon:      #4fa5de;

  --teal:         #1565c0;
  --seafoam:      #1e88e5;
  --glow:         rgba(30,136,229,0.5);

  --gold:         #c9a84c;
  --gold-light:   #f0d060;
  --gold-dark:    #8a6a1f;
  --gold-glow:    rgba(201,168,76,0.25);

  --cream:        #0a1e38;
  --white:        #071020;
  --muted:        rgba(10,30,56,0.62);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Crimson Pro', Georgia, serif;
  --font-accent:  'Bebas Neue', 'Impact', sans-serif;

  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 8px 40px rgba(21,101,192,0.18);
  --shadow-gold:  0 0 30px rgba(201,168,76,0.2);
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  background: #dff2fc;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ══════════════════════════════════════════════════════
   SPLASH SCREEN  (stays dark)
   ══════════════════════════════════════════════════════ */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #010810;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100vw;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  animation: splashBgShift 4s ease infinite;
}
@keyframes splashBgShift {
  0%   { background: #0a0e27; }
  16%  { background: #0d3b6e; }
  33%  { background: #0b5563; }
  50%  { background: #1a2a6c; }
  66%  { background: #164a3a; }
  83%  { background: #2c1654; }
  100% { background: #0a0e27; }
}
#splash.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#splashCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.splash-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding-bottom: 140px;
}

.splash-logos-trio {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 0.5rem;
  min-width: 540px;
}

/* Bigger splash logo sizes */
.splash-logo    { width: 190px; height: 190px; }
.splash-logo-sm { width: 170px; height: 170px; }
.splash-logo, .splash-logo-sm {
  object-fit: contain;
  opacity: 0;
  position: relative;
  transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.55s ease,
              filter 0.5s ease;
}
.splash-logo-round { border-radius: 50%; }
.logo-fill { object-fit: contain; }
img[src="Logo-2.jpeg"] { clip-path: circle(46%); border: none; outline: none; }
img[src^="Logo-3.png"] { filter: none !important; }
.splash-logos-trio img[src="Logo-2.jpeg"] { width: 158px; height: 158px; }
.hero-logos-trio img[src="Logo-2.jpeg"]   { width: 120px;  height: 120px; }
.nav-logo-trio img[src="Logo-2.jpeg"]     { width: 28px;  height: 28px; }
.partner-logos-row img[src="Logo-2.jpeg"] { width: 68px;  height: 68px; }
.footer-logos-trio img[src="Logo-2.jpeg"] { width: 220px !important; height: 220px !important; max-width: none !important; }

/* ─────────────────────────────────────────────────────────
   SPLASH LOGO ANIMATION
   Sizes: center=190px, sides=170px, gap=32px
   Side offsets from trio center: ±(95+32+85) = ±212px
   ───────────────────────────────────────────────────────── */

/* Phase 0 — all logos start stacked at center as ONE, invisible */
#splashLogoLeft   { transform: translateX(212px) scale(0.82); opacity: 0; z-index: 1; }
#splashLogoCenter { transform: scale(1.35);                   opacity: 0; z-index: 3; }
#splashLogoRight  { transform: translateX(-212px) scale(0.82); opacity: 0; z-index: 2; }

/* Phase 1 — ONE logo fades in (still stacked) */
#splashLogosTrio.logo-one #splashLogoLeft  {
  transform: translateX(212px) scale(0.82); opacity: 0.25;
}
#splashLogosTrio.logo-one #splashLogoCenter {
  transform: scale(1.35); opacity: 1;
  filter: drop-shadow(0 0 35px rgba(201,168,76,0.9)) drop-shadow(0 0 80px rgba(201,168,76,0.45));
  animation: splashOnePulse 1.6s ease-in-out infinite;
}
#splashLogosTrio.logo-one #splashLogoRight {
  transform: translateX(-212px) scale(0.82); opacity: 0.25;
}

/* Phase 2 — DIVIDE: logos slide to their natural positions */
#splashLogosTrio.logo-dividing #splashLogoLeft {
  transform: translateX(0) scale(1); opacity: 1;
}
#splashLogosTrio.logo-dividing #splashLogoCenter {
  transform: scale(1); opacity: 1;
  filter: drop-shadow(0 0 16px rgba(201,168,76,0.5));
  animation: none;
}
#splashLogosTrio.logo-dividing #splashLogoRight {
  transform: translateX(0) scale(1); opacity: 1;
}

/* Phase 3 — EXIT: logos scatter outward as splash fades */
#splashLogosTrio.logo-exiting #splashLogoLeft {
  transform: translateX(-260px) scale(0.5); opacity: 0;
  transition: transform 0.6s cubic-bezier(0.4,0,1,1), opacity 0.45s ease-in, filter 0.3s;
}
#splashLogosTrio.logo-exiting #splashLogoCenter {
  transform: scale(1.8) translateY(-30px); opacity: 0;
  transition: transform 0.6s cubic-bezier(0.4,0,1,1), opacity 0.45s ease-in, filter 0.3s;
}
#splashLogosTrio.logo-exiting #splashLogoRight {
  transform: translateX(260px) scale(0.5); opacity: 0;
  transition: transform 0.6s cubic-bezier(0.4,0,1,1), opacity 0.45s ease-in, filter 0.3s;
}

@keyframes splashOnePulse {
  0%, 100% { filter: drop-shadow(0 0 35px rgba(201,168,76,0.8)) drop-shadow(0 0 80px rgba(201,168,76,0.4)); }
  50%       { filter: drop-shadow(0 0 60px rgba(201,168,76,1.0)) drop-shadow(0 0 120px rgba(201,168,76,0.7)); }
}
@keyframes splashLogoPulse {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(201,168,76,0.6)) drop-shadow(0 0 60px rgba(201,168,76,0.2)); }
  50%       { filter: drop-shadow(0 0 50px rgba(201,168,76,0.9)) drop-shadow(0 0 100px rgba(201,168,76,0.4)); }
}
.splash-logo.pulsing { animation: splashLogoPulse 2s ease-in-out infinite; }

/* Splash text stays white (dark bg) */
.splash-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #f8faff;
  opacity: 0;
  letter-spacing: 0.04em;
  animation: fadeUp 0.5s ease 2.5s forwards;
}
.splash-sub {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.5s ease 2.75s forwards;
}

.splash-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.4s ease 2.95s forwards;
  margin-top: 0.5rem;
}
.splash-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px;
  transition: width 0.08s linear;
}

.splash-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  z-index: 1;
}
.sw {
  position: absolute;
  bottom: 0; left: 0;
  width: 200%;
  height: 100%;
}
.sw1 { animation: waveSlide 6s linear infinite; }
.sw2 { animation: waveSlide 9s linear infinite reverse; }
.sw3 { animation: waveSlide 7s linear infinite 1s; }

@keyframes waveSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

body.splash-active { overflow: hidden; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #c2e0f5; }
::-webkit-scrollbar-thumb { background: var(--seafoam); border-radius: 3px; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Section shared ── */
section { padding: 6rem 0; position: relative; }
#about, #helpline, #contact { background: #dff2fc; }
#centres { background: #cce7f8; }
#seamen  { background: transparent; }

.section-eyebrow {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  letter-spacing: 4px;
  color: var(--seafoam);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: var(--gold); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.section-heading em  { font-style: italic; color: var(--gold); }
.section-heading.light { color: #ffffff; }

.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 3rem;
}

/* About section — centered & bigger */
.about-eyebrow {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 6px;
}
.about-heading {
  text-align: center;
  font-size: clamp(3rem, 6vw, 5rem);
}

/* Contact section — centered & bigger */
.contact-eyebrow {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 6px;
}
.contact-heading {
  text-align: center;
  font-size: clamp(3rem, 6vw, 5rem);
}

/* Helpline section — centered & bigger */
.helpline-eyebrow {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 6px;
}
.helpline-heading {
  text-align: center;
  font-size: clamp(3rem, 6vw, 5rem);
}
.helpline-sub {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25rem;
}

/* Services section — centered & bigger */
.services-eyebrow {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 6px;
}
.services-heading {
  text-align: center;
  font-size: clamp(3rem, 6vw, 5rem);
}
.services-sub {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25rem;
}

/* Centres section — centered & bigger */
.centres-eyebrow {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 6px;
}
.centres-heading {
  text-align: center;
  font-size: clamp(3rem, 6vw, 5rem);
}
.centres-sub {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25rem;
}

/* ── Wave dividers ── */
.wave-sep {
  display: block;
  line-height: 0;
  overflow: hidden;
  margin-bottom: -2px;
}
.wave-sep svg { display: block; width: 100%; }
.wave-sep-1    { background: #071828; }          /* after dark hero */
.wave-sep-2    { background: #dff2fc; }
.wave-sep-3    { background: #cce7f8; }
.wave-sep-4    { background: #dff2fc; }
.wave-sep-5    { background: #dff2fc; }
.wave-sep-6    { background: #dff2fc; }
.wave-sep-shop1 { background: #1565c0; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.3; }
}
@keyframes rotate-compass {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes wave-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 30px rgba(21,101,192,0.15);
  border-bottom: 1px solid rgba(30,136,229,0.15);
}

/* Nav text: light over dark hero, dark when scrolled */
#header:not(.scrolled) .nav-links a   { color: rgba(242,232,213,0.82); }
#header:not(.scrolled) .brand-name    { color: #f8faff; }
#header:not(.scrolled) .org-badge     { color: var(--gold); }
#header:not(.scrolled) .org-dot       { color: rgba(242,232,213,0.4); }
#header:not(.scrolled) .hamburger span { background: #f2e8d5; }

#header.scrolled .nav-links a  { color: rgba(10,30,56,0.78); }
#header.scrolled .brand-name   { color: var(--white); }
#header.scrolled .org-badge    { color: var(--teal); }
#header.scrolled .org-dot      { color: rgba(10,30,56,0.35); }
#header.scrolled .hamburger span { background: var(--cream); }

.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand { display: flex; flex-direction: column; gap: 0.2rem; }

.brand-org-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 2px;
}
.org-badge { color: var(--gold); }
.org-dot   { color: var(--muted); }

.brand-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.brand-name:hover { color: var(--gold); }

/* ── Nav logo trio ── */
.nav-logo-trio {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.nav-logo-sm {
  width: 36px; height: 36px;
  object-fit: contain;
  transition: transform var(--transition), filter var(--transition);
  filter: drop-shadow(0 1px 5px rgba(21,101,192,0.3));
}
.nav-logo-main { width: 36px; height: 36px; }
.nav-logo-round { border-radius: 50%; }
.brand-name:hover .nav-logo-sm { filter: drop-shadow(0 2px 10px rgba(201,168,76,0.5)); transform: scale(1.08); }

/* ── Hero logo trio ── */
.hero-logos-trio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.trio-center { position: relative; z-index: 2; }
.trio-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.15s forwards;
}
.trio-side span {
  font-family: var(--font-accent);
  font-size: 0.52rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}
.trio-img-side {
  width: 155px; height: 155px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(1,8,16,0.7));
  transition: all var(--transition);
}
.trio-img-side:hover { transform: scale(1.08); filter: drop-shadow(0 6px 22px rgba(201,168,76,0.4)); }
.trio-round { border-radius: 50%; }

/* ── About — partner logos ── */
.partner-logos-row {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 1.75rem;
}
.partner-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  text-align: center;
}
.partner-logo-item img {
  width: 84px; height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 3px 12px rgba(21,101,192,0.15));
  transition: transform var(--transition);
}
.partner-logo-item img:hover { transform: scale(1.1); }
.partner-logo-item span {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  color: var(--teal);
  text-transform: uppercase;
  line-height: 1.5;
}
.partner-divider { width: 1px; height: 65px; background: rgba(201,168,76,0.2); flex-shrink: 0; }

/* ── Footer logo trio ── */
.footer-logos-trio {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: nowrap;
}
.ftl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  flex-shrink: 0;
}
.ftl-item img {
  width: 160px !important; height: 160px !important;
  max-width: 160px !important;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(1,8,16,0.6));
  transition: transform var(--transition);
}
.ftl-item:hover img { transform: scale(1.08); }
.ftl-main img { width: 160px !important; height: 160px !important; max-width: 160px !important; }
.footer-logos-trio img[src="Logo-2.jpeg"] { width: 130px !important; height: 130px !important; max-width: 130px !important; }
.ftl-item span {
  font-family: var(--font-accent);
  font-size: 0.52rem;
  letter-spacing: 1.5px;
  color: rgba(248,250,255,0.4);
  text-transform: uppercase;
}

.hero-logo-wrap {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}
.hero-logo {
  width: 155px;
  height: 155px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  animation: logoFloat 5s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.footer-logo {
  width: 32px; height: 32px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 0.5rem;
  filter: drop-shadow(0 1px 6px rgba(201,168,76,0.35));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(10,30,56,0.78);
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--teal); background: rgba(30,136,229,0.08); }
.nav-links a.nav-active { color: var(--gold) !important; }
.nav-cta {
  background: var(--gold) !important;
  color: #071020 !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 8px !important;
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-admin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.55);
  color: var(--gold);
  font-size: 18px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-admin-btn:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  transform: scale(1.08);
}
#header.scrolled .nav-admin-btn       { border-color: rgba(7,30,54,0.35); color: var(--navy); }
#header.scrolled .nav-admin-btn:hover { background: rgba(7,30,54,0.08); border-color: var(--navy); }

/* ══════════════════════════════════════════════════════
   LANGUAGE SWITCHER
   ══════════════════════════════════════════════════════ */
.lang-switcher {
  position: relative;
  margin-left: 8px;
}
.lang-toggle {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--cream);
  padding: 6px 11px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
  white-space: nowrap;
}
.lang-toggle:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); }
#header.scrolled .lang-toggle { color: var(--navy); border-color: rgba(7,30,54,0.3); background: rgba(7,30,54,0.06); }
#header.scrolled .lang-toggle:hover { background: rgba(7,30,54,0.1); border-color: var(--navy); }
.lang-toggle svg { opacity: 0.7; transition: transform 0.2s; }
.lang-toggle.open svg { transform: rotate(180deg); }

.lang-menu {
  display: none;
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #0d1f3c;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  overflow: hidden;
  min-width: 160px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  z-index: 9999;
}
.lang-menu.open { display: block; }
.lang-opt {
  display: block; width: 100%;
  padding: 10px 16px; text-align: left;
  background: none; border: none;
  color: #c8d6e5; font-size: 14px;
  cursor: pointer; transition: background 0.15s;
}
.lang-opt:hover { background: rgba(201,168,76,0.12); color: var(--gold); }
.lang-opt.active { color: var(--gold); font-weight: 600; }

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 2rem 2rem;
  background: #000;
  max-width: 100vw;
}
#shipBgFrame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 0;
  pointer-events: none;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,8,16,0.55) 0%, rgba(1,8,16,0.45) 60%, rgba(1,8,16,0.72) 100%);
  z-index: 1;
}

#ocean {
  display: none;
}

.compass-rose {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(380px, 40vw);
  height: auto;
  z-index: 1;
  opacity: 0.9;
  animation: rotate-compass 120s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}
.ht-1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  font-style: italic;
  color: #f2e8d5;
  line-height: 1;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}
.ht-2 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  color: #f8faff;
  line-height: 0.95;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #c9a84c 40%, #f0d060 60%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp 0.8s ease 0.7s forwards, shimmer 4s linear 1.5s infinite;
  opacity: 0;
}
.ht-3 {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 6vw, 4.5rem);
  letter-spacing: 8px;
  color: #7dd3fa;
  line-height: 1;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #071020;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(201,168,76,0.4);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(201,168,76,0.55);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #f8faff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(242,232,213,0.35);
  transition: all var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  background: rgba(201,168,76,0.06);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.5s forwards;
}
.hstat { display: flex; flex-direction: column; align-items: center; }
.hstat strong {
  font-family: var(--font-accent);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}
.hstat span {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 2px;
  color: rgba(242,232,213,0.55);
  text-transform: uppercase;
  margin-top: 0.1rem;
}
.hstat-line {
  width: 1px;
  height: 40px;
  background: rgba(242,232,213,0.2);
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s ease 2s forwards;
}
.scroll-cue span {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: rgba(242,232,213,0.45);
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(242,232,213,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}

.about-body .lead-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
}
.about-body p {
  color: rgba(10,30,56,0.78);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.cert-badge {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--teal);
  border: 1px solid rgba(21,101,192,0.35);
  background: rgba(30,136,229,0.08);
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
}

.about-cards { display: flex; flex-direction: column; gap: 1.5rem; }

/* Photo gallery — right column of about layout */
.about-photo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.about-photo-slot {
  position: relative;
  aspect-ratio: 1;
  border: 2px dashed rgba(21,101,192,0.3);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(30,136,229,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.about-photo-img[src]:not([src=""]) { display: block; }
.about-photo-img[src]:not([src=""]) ~ .about-photo-label { display: none; }
.about-photo-label {
  font-size: 0.7rem;
  color: rgba(21,101,192,0.45);
  font-family: var(--font-accent);
  letter-spacing: 1px;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

/* Cards row — full width below the about layout */
.about-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  margin-top: 2.5rem;
}

/* Photo placeholder grid inside Welcome Kit card */
.acard-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 1.1rem;
}
.acard-photo-slot {
  position: relative;
  aspect-ratio: 1;
  border: 2px dashed rgba(201,168,76,0.4);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(201,168,76,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.acard-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.acard-photo-img[src]:not([src=""]) { display: block; }
.acard-photo-img[src]:not([src=""]) ~ .acard-photo-placeholder { display: none; }
.acard-photo-placeholder {
  font-size: 0.65rem;
  color: rgba(201,168,76,0.5);
  text-align: center;
  font-family: var(--font-accent);
  letter-spacing: 1px;
  pointer-events: none;
  user-select: none;
}

.acard {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  box-shadow: 0 2px 12px rgba(21,101,192,0.08);
}
.acard:hover {
  border-color: rgba(201,168,76,0.45);
  background: rgba(255,255,255,0.9);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(21,101,192,0.12);
}
.acard-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.acard-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.acard-content p   { font-size: 0.95rem; color: var(--muted); line-height: 1.65; margin-bottom: 0.75rem; }
.acard-content ul  { padding-left: 1.1rem; list-style: disc; }
.acard-content li  { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.3rem; }

/* ══════════════════════════════════════════════════════
   PORT CENTRES
   ══════════════════════════════════════════════════════ */
.ports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.port-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(30,136,229,0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(21,101,192,0.07);
  display: block;
  text-decoration: none;
  color: inherit;
}
.port-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--seafoam), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.port-card:hover {
  border-color: rgba(30,136,229,0.5);
  background: rgba(255,255,255,0.92);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(21,101,192,0.18);
}
.port-card:hover::before { opacity: 1; }

.port-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.port-num {
  font-family: var(--font-accent);
  font-size: 2.4rem;
  color: rgba(30,136,229,0.3);
  line-height: 1;
}
.port-anchor { font-size: 1.5rem; }

.port-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.port-state {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: var(--teal);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.25rem;
}

.port-view {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 1.5px;
  color: var(--teal);
  transition: color var(--transition);
}
.port-card:hover .port-view { color: var(--gold); }

/* ══════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════ */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
  margin-top: 0;
}
.services-scroll-side {
  height: 520px;
  overflow: hidden;
  border-radius: 16px;
  flex-shrink: 0;
  mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
}

.svc-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(21,101,192,0.07);
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.svc-card:hover {
  border-color: rgba(201,168,76,0.45);
  background: rgba(255,255,255,0.92);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
  animation: wave-float 4s ease-in-out infinite;
}
.svc-card:nth-child(2n) .svc-icon { animation-delay: -1s; }
.svc-card:nth-child(3n) .svc-icon { animation-delay: -2s; }

.svc-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.svc-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* ══════════════════════════════════════════════════════
   SEAMEN SERVICES  (vibrant blue — keeps dark text on blue)
   ══════════════════════════════════════════════════════ */
#seamen { padding: 0; }

.seamen-inner {
  position: relative;
  background: linear-gradient(135deg, #1565c0 0%, #1976d2 35%, #1e88e5 65%, #42a5f5 100%);
  padding: 7rem 2rem;
  overflow: hidden;
}
.seamen-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.seamen-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 3px;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 3rem;
  text-transform: uppercase;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  width: fit-content;
}

.seamen-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}

.seamen-text p { color: rgba(255,255,255,0.92); margin-bottom: 1.2rem; line-height: 1.8; }

.seamen-photo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.seamen-photo-slot {
  position: relative;
  aspect-ratio: 1;
  border: 2px dashed rgba(255,255,255,0.3);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.seamen-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.seamen-photo-img[src]:not([src=""]) { display: block; }
.seamen-photo-img[src]:not([src=""]) ~ .seamen-photo-label { display: none; }
.seamen-photo-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-accent);
  letter-spacing: 1px;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

.seamen-title-wrap {
  text-align: center;
  margin-bottom: 3rem;
}
.seamen-eyebrow {
  font-size: 2.2rem;
  letter-spacing: 6px;
}
.seamen-heading {
  font-size: clamp(3rem, 6vw, 5rem);
}

.seamen-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sf-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  transition: all var(--transition);
}
.sf-card:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.22);
}
.sf-icon { font-size: 1.75rem; flex-shrink: 0; }
.sf-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}
.sf-card p { font-size: 0.82rem; color: rgba(255,255,255,0.82); line-height: 1.5; }

/* ══════════════════════════════════════════════════════
   HELPLINE FORM
   ══════════════════════════════════════════════════════ */
.helpline-form { margin-top: 2.5rem; position: relative; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 0.45rem; }

.form-group label {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: rgba(10,30,56,0.62);
  text-transform: uppercase;
}
.req { color: var(--seafoam); }

.phone-input-wrap {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.phone-input-wrap .country-code-select {
  flex: 0 0 auto;
  width: 110px;
  padding: 0.85rem 0.6rem;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(30,136,229,0.22);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.phone-input-wrap input[type="tel"] {
  flex: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(30,136,229,0.22);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231565c0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: rgba(255,255,255,0.85);
  cursor: pointer;
}
.form-group select option { background: #e8f4fc; color: var(--white); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(10,30,56,0.35); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--seafoam);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 0 0 3px rgba(30,136,229,0.14);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #e53935;
  background: rgba(229,57,53,0.04);
}

.form-error {
  font-size: 0.8rem;
  color: #e53935;
  min-height: 1rem;
  display: none;
}
.form-group.error .form-error { display: block; }
.form-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--muted, #64748b);
  margin-top: 4px;
}

.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.form-footer {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--teal), var(--seafoam));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(21,101,192,0.35);
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(21,101,192,0.5);
}
.btn-submit:active { transform: translateY(-1px); }
.btn-icon { font-size: 1.2rem; transition: transform var(--transition); }
.btn-submit:hover .btn-icon { transform: translateX(4px); }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  background: rgba(30,136,229,0.07);
  border: 1px solid rgba(30,136,229,0.25);
  border-radius: var(--radius-lg);
  margin-top: 1.5rem;
}
.form-success.show { display: block; animation: fadeUp 0.6s ease; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.form-success p { color: var(--muted); }

/* ══════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(21,101,192,0.07);
}
.contact-card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.cc-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.contact-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

.contact-helpline-cta {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(30,136,229,0.1), rgba(21,101,192,0.07));
  border: 1px solid rgba(30,136,229,0.2);
  border-radius: var(--radius-lg);
}
.contact-helpline-cta p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* ══════════════════════════════════════════════════════
   SHOP — CREW APPAREL
   ══════════════════════════════════════════════════════ */
#shop { background: #dff2fc; display: none; }
#shop.shop-visible { display: block; animation: fadeUp 0.6s ease; }
.wave-sep-shop1 { background: #1565c0; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 2px 16px rgba(21,101,192,0.1);
}
.product-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(21,101,192,0.18), 0 0 0 1px rgba(201,168,76,0.2);
}

.product-badge-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: #071020;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 2px;
  padding: 0.28rem 0.7rem;
  border-radius: 4px;
  z-index: 2;
}
.new-tag { background: var(--seafoam); color: #fff; }

.product-visual {
  background: linear-gradient(135deg, rgba(21,101,192,0.12), rgba(30,136,229,0.18));
  padding: 2.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border-bottom: 1px solid rgba(30,136,229,0.12);
}

.tshirt-svg {
  width: 180px; height: 165px;
  filter: drop-shadow(0 8px 24px rgba(21,101,192,0.25));
  transition: transform 0.4s ease, filter 0.4s ease;
}
.product-card:hover .tshirt-svg {
  transform: scale(1.06) translateY(-4px);
  filter: drop-shadow(0 14px 36px rgba(21,101,192,0.3)) drop-shadow(0 0 20px rgba(201,168,76,0.15));
}

.tshirt-svg .shirt-body   { fill: var(--shirt-body, #1a3a5c); }
.tshirt-svg .shirt-sleeve { fill: var(--shirt-sleeve, #15304e); }
.tshirt-svg .shirt-collar { fill: var(--shirt-collar, #0d2440); }
.tshirt-svg .shirt-cuff   { stroke: rgba(255,255,255,0.25); fill: none; }
.tshirt-svg .shirt-hem    { stroke: rgba(255,255,255,0.2);  fill: none; }

.shirt-type-badge {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 3px;
  color: var(--teal);
  text-transform: uppercase;
  margin-top: 0.75rem;
}

.product-info { padding: 1.5rem; }
.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.prod-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.5; }

.color-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}
.color-label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}
.color-btns { display: flex; gap: 0.4rem; }
.clr-btn {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: var(--c, #333);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.clr-btn::before { content: attr(data-body); display: none; }
.clr-btn { background-color: attr(data-body color, #333); }
.clr-btn.active { border-color: var(--gold); transform: scale(1.2); }
.clr-btn:hover  { transform: scale(1.15); border-color: rgba(201,168,76,0.5); }

.selected-color {
  font-size: 0.82rem;
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-body);
}

.size-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.size-label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}
.size-btns { display: flex; gap: 0.4rem; }
.sz-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1.5px solid rgba(30,136,229,0.22);
  background: rgba(255,255,255,0.6);
  color: rgba(10,30,56,0.7);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition);
}
.sz-btn:hover { border-color: rgba(201,168,76,0.5); color: var(--gold); }
.sz-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #071020;
  font-weight: bold;
}

.price-block { margin-bottom: 1.25rem; }
.price-main {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.price-note {
  font-size: 0.8rem;
  color: var(--muted);
  display: block;
  margin-top: 0.25rem;
}

.qty-add-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(30,136,229,0.2);
  border-radius: 8px;
  overflow: hidden;
}
.qty-btn {
  width: 36px; height: 38px;
  background: rgba(30,136,229,0.06);
  border: none;
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition);
}
.qty-btn:hover { background: rgba(201,168,76,0.15); color: var(--gold); }
.qty-val {
  width: 36px;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--white);
  border-left: 1px solid rgba(30,136,229,0.12);
  border-right: 1px solid rgba(30,136,229,0.12);
  line-height: 38px;
}

.add-order-btn {
  flex: 1;
  background: linear-gradient(135deg, var(--teal), var(--seafoam));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.add-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(21,101,192,0.35);
}
.add-order-btn.added {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #071020;
}

.order-cart {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(30,136,229,0.25);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: none;
  box-shadow: 0 4px 20px rgba(21,101,192,0.1);
}
.order-cart.visible { display: block; animation: fadeUp 0.5s ease; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--teal);
}
.cart-clear {
  background: none;
  border: 1px solid rgba(220,50,50,0.3);
  color: rgba(200,50,50,0.7);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
}
.cart-clear:hover { border-color: rgba(220,50,50,0.6); color: #c62828; }

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(30,136,229,0.1);
  font-size: 0.95rem;
}
.cart-item-name  { color: var(--white); font-weight: 500; }
.cart-item-meta  { color: var(--muted); font-size: 0.82rem; }
.cart-item-price { color: var(--gold); font-family: var(--font-display); font-weight: 700; }

.cart-footer { margin-top: 1.25rem; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--muted);
}
.cart-total-row strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
}
.cart-note { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.55; }
.cart-checkout { display: inline-flex; margin-top: 0; width: 100%; justify-content: center; }

/* ── Order Modal ── */
.order-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,30,56,0.55);
  backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.order-modal-overlay.open { display: flex; animation: fadeUp 0.3s ease; }
.order-modal {
  background: #ffffff;
  border: 1px solid rgba(30,136,229,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 560px;
  margin: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(21,101,192,0.2);
}
.order-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: color var(--transition);
}
.order-modal-close:hover { color: var(--gold); }
.order-modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.order-modal-sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 1.75rem; }
.order-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.order-form-grid .form-full { grid-column: 1 / -1; }
.order-summary-preview {
  background: rgba(30,136,229,0.06);
  border: 1px solid rgba(30,136,229,0.15);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}
.order-summary-preview strong { color: var(--cream); }
.order-submit-btn { width: 100%; justify-content: center; }
.order-modal-success { display: none; text-align: center; padding: 1rem 0; }
.order-modal-success.show { display: block; animation: fadeUp 0.5s ease; }

/* ══════════════════════════════════════════════════════
   WHATSAPP HELPLINE WIDGET
   ══════════════════════════════════════════════════════ */
.wa-widget {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9997;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

/* Floating button */
.wa-fab {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: all 0.3s ease;
  position: relative;
}
.wa-fab:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}
.wa-fab-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Pulsing ring */
.wa-fab-ping {
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 2px solid rgba(37,211,102,0.55);
  animation: waPing 2s ease-out infinite;
  pointer-events: none;
}
@keyframes waPing {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.28); opacity: 0; }
}

/* Popup card */
.wa-popup {
  background: #fff;
  border-radius: 16px;
  width: 320px;
  box-shadow: 0 12px 50px rgba(0,0,0,0.18);
  overflow: hidden;
  transform: scale(0.88) translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
  transform-origin: bottom right;
}
.wa-popup.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.wa-popup-header {
  background: #075e54;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wa-avatar {
  width: 44px; height: 44px;
  background: #128c7e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-popup-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.wa-popup-status {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.72);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
}
.wa-dot {
  width: 7px; height: 7px;
  background: #25d366;
  border-radius: 50%;
  display: inline-block;
}
.wa-popup-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  transition: color 0.2s;
  flex-shrink: 0;
}
.wa-popup-close:hover { color: #fff; }

.wa-popup-body {
  background: #e5ddd5;
  padding: 1.1rem 1rem;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10h80v80H10z' fill='none' stroke='rgba(0,0,0,0.03)' stroke-width='0.5'/%3E%3C/svg%3E");
}
.wa-bubble {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: relative;
}
.wa-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  border: 8px solid transparent;
  border-top-color: #fff;
  border-left: none;
}

.wa-popup-footer {
  padding: 0.9rem 1rem;
  background: #f0f0f0;
}
.wa-chat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 3px 12px rgba(37,211,102,0.35);
}
.wa-chat-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .wa-widget { bottom: 1.1rem; right: 1.1rem; }
  .wa-popup { width: calc(100vw - 2.2rem); }
  .wa-fab-label { display: none; }
  .wa-fab { padding: 0.85rem; border-radius: 50%; }
}

/* ══════════════════════════════════════════════════════
   CENTRE MODAL — port detail popup
   ══════════════════════════════════════════════════════ */
.centre-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,24,40,0.75);
  backdrop-filter: blur(8px);
  z-index: 9998;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.centre-modal-overlay.open { display: flex; animation: fadeUp 0.32s ease; }

.centre-modal {
  background: #dff2fc;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 880px;
  margin: auto;
  position: relative;
  box-shadow: 0 28px 90px rgba(7,24,40,0.45);
  overflow: hidden;
}

.cm-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.32);
  color: #f8faff;
  font-size: 1.1rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
  line-height: 1;
}
.cm-close:hover { background: rgba(255,255,255,0.32); }

.cm-hero {
  background: linear-gradient(135deg, #071828 0%, #0d2a4a 50%, #1565c0 100%);
  padding: 3.5rem 2rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Ship-1.png') center center / cover no-repeat;
  opacity: 0.15;
}
.cm-hero-content { position: relative; z-index: 1; }
.cm-port-num {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.cm-port-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #f8faff;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.cm-port-state {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: rgba(242,232,213,0.6);
  text-transform: uppercase;
}

.cm-body { padding: 1.75rem 2rem 2rem; }

/* ── Split layout ── */
.cm-split {
  display: grid;
  grid-template-columns: 230px 1fr;
  border: 1px solid rgba(30,136,229,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.75rem;
}

/* ── Left list ── */
.cm-list {
  background: rgba(21,101,192,0.06);
  border-right: 1px solid rgba(30,136,229,0.15);
  overflow-y: auto;
}
.cm-list-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(30,136,229,0.08);
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.cm-list-item:last-child { border-bottom: none; }
.cm-list-item:hover { background: rgba(30,136,229,0.1); }
.cm-list-item.active {
  background: rgba(30,136,229,0.14);
  border-left-color: var(--teal);
}
.cm-li-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1; }
.cm-li-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}
.cm-list-item.active .cm-li-text { color: var(--teal); }

/* ── Right photo panel ── */
.cm-photos-panel {
  padding: 1.5rem;
  background: rgba(255,255,255,0.45);
  min-height: 320px;
}

.cm-photo-section { display: none; }
.cm-photo-section.active { display: block; animation: fadeUp 0.28s ease; }

.cm-section-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cm-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.cm-photo-slot {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 2px dashed rgba(21,101,192,0.25);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(30,136,229,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cm-photo-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: none;
}
.cm-photo-img[src]:not([src=""]) { display: block; }
.cm-photo-img[src]:not([src=""]) ~ .cm-photo-label { display: none; }
.cm-photo-label {
  font-size: 0.65rem;
  color: rgba(21,101,192,0.4);
  font-family: var(--font-accent);
  letter-spacing: 1px;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

.cm-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cm-cta {
  background: linear-gradient(135deg, rgba(21,101,192,0.1), rgba(30,136,229,0.07));
  border: 1px solid rgba(30,136,229,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.cm-cta h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.cm-cta p { color: var(--muted); margin-bottom: 1.25rem; font-size: 0.95rem; }

@media (max-width: 600px) {
  .cm-split { grid-template-columns: 1fr; }
  .cm-list { border-right: none; border-bottom: 1px solid rgba(30,136,229,0.15); display: flex; flex-wrap: wrap; }
  .cm-list-item { flex: 1 0 calc(50% - 1px); border-left: none; border-bottom: 1px solid rgba(30,136,229,0.08); border-top: 3px solid transparent; }
  .cm-list-item.active { border-top-color: var(--teal); border-left: none; }
  .cm-li-text { font-size: 0.78rem; }
  .cm-photos-panel { min-height: unset; }
}
@media (max-width: 480px) {
  .cm-body { padding: 1rem; }
  .cm-hero { padding: 2.5rem 1.25rem 2rem; }
  .cm-list-item { flex: 1 0 100%; }
  .cm-photo-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════
   FOOTER  (stays dark for contrast)
   ══════════════════════════════════════════════════════ */
footer {
  background: #071828;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-org {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--gold);
}
.footer-sep { color: rgba(248,250,255,0.3); }

.footer-brand { max-width: 100%; overflow: hidden; }

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #f8faff;
  margin-bottom: 0.75rem;
}
.footer-byline {
  font-size: 0.9rem;
  color: rgba(248,250,255,0.4);
  line-height: 1.65;
}

.footer-nav { display: flex; gap: 3rem; }

.fn-col { display: flex; flex-direction: column; gap: 0.5rem; }
.fn-col h4 {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: var(--seafoam);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.fn-col a, .fn-col span {
  font-size: 0.9rem;
  color: rgba(248,250,255,0.5);
  transition: color var(--transition);
}
.fn-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(248,250,255,0.3); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-cards-row { grid-template-columns: 1fr; }
  .services-layout { grid-template-columns: 1fr; }
  .services-scroll-side { display: none; }
  .seamen-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .compass-rose { width: min(280px, 35vw); opacity: 0.5; }
}

@media (max-width: 768px) {
  /* ── Nav ── */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    gap: 0.5rem;
    transition: right var(--transition);
    border-left: 1px solid rgba(30,136,229,0.15);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; padding: 0.6rem 0.8rem; width: 100%; color: rgba(10,30,56,0.8); }
  #header:not(.scrolled) .nav-links.open a { color: rgba(10,30,56,0.8); }
  .nav-cta { width: 100%; text-align: center; margin-top: 0.5rem; }

  /* ── Splash ── */
  .splash-logos-trio { min-width: unset; gap: 1rem; }
  .splash-logo    { width: 120px; height: 120px; }
  .splash-logo-sm { width: 105px; height: 105px; }
  .splash-logos-trio img[src="Logo-2.jpeg"] { width: 100px !important; height: 100px !important; }
  /* Recalculate stacking offsets for smaller logos: ~(60+16+52)=128px */
  #splashLogoLeft                              { transform: translateX(128px) scale(0.82); }
  #splashLogoRight                             { transform: translateX(-128px) scale(0.82); }
  #splashLogosTrio.logo-one #splashLogoLeft    { transform: translateX(128px) scale(0.82); }
  #splashLogosTrio.logo-one #splashLogoRight   { transform: translateX(-128px) scale(0.82); }
  #splashLogosTrio.logo-exiting #splashLogoLeft  { transform: translateX(-160px) scale(0.5); }
  #splashLogosTrio.logo-exiting #splashLogoRight { transform: translateX(160px) scale(0.5); }

  /* ── Hero ── */
  .hero-content { padding: 1.5rem; }
  .ht-2 { font-size: clamp(2.8rem, 11vw, 5.5rem); }
  .ht-1 { font-size: clamp(1.8rem, 6vw, 3.5rem); }
  .ht-3 { font-size: clamp(1.5rem, 5vw, 3rem); }
  .hero-sub { font-size: clamp(1rem, 3.5vw, 1.4rem); }
  .compass-rose { display: none; }
  .hero-logos-trio { gap: 1.5rem; }
  .trio-img-side { width: 105px; height: 105px; }
  .hero-logo { width: 105px; height: 105px; }
  .hero-logos-trio img[src="Logo-2.jpeg"] { width: 82px !important; height: 82px !important; }
  .hero-stats { gap: 0.6rem; }
  .hstat-line { height: 28px; }
  .hstat strong { font-size: 2rem; }
  .hstat span { font-size: 0.85rem; }

  /* ── Section headings (big centered) ── */
  .about-eyebrow,
  .centres-eyebrow, .services-eyebrow, .seamen-eyebrow,
  .helpline-eyebrow, .contact-eyebrow {
    font-size: 1.4rem;
    letter-spacing: 3px;
  }
  .about-heading,
  .centres-heading, .services-heading, .seamen-heading,
  .helpline-heading, .contact-heading {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
  .helpline-sub, .services-sub, .centres-sub {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  /* ── Sections ── */
  section { padding: 4rem 0; }
  .seamen-inner { padding: 4rem 1.5rem; }
  .seamen-badge { font-size: 0.62rem; }

  /* ── Footer ── */
  .footer-logos-trio { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
  .ftl-item img { width: 110px !important; height: 110px !important; max-width: 110px !important; }
  .ftl-main img { width: 110px !important; height: 110px !important; max-width: 110px !important; }
  .footer-logos-trio img[src="Logo-2.jpeg"] { width: 90px !important; height: 90px !important; max-width: 90px !important; }
  .footer-nav { flex-direction: column; gap: 2rem; }

  /* ── Forms ── */
  .form-grid { grid-template-columns: 1fr; }
  .seamen-features { grid-template-columns: 1fr; }

  /* ── Products ── */
  .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav { padding: 0.85rem 1.25rem; }
  .container { padding: 0 1.25rem; }
  .ports-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-gold, .btn-ghost { width: 100%; text-align: center; justify-content: center; }

  /* ── Splash ── */
  .splash-logos-trio { gap: 0.5rem; }
  .splash-logo    { width: 85px; height: 85px; }
  .splash-logo-sm { width: 75px; height: 75px; }
  .splash-logos-trio img[src="Logo-2.jpeg"] { width: 70px !important; height: 70px !important; }
  /* Offsets: ~(42+8+37)=87px */
  #splashLogoLeft                              { transform: translateX(87px) scale(0.82); }
  #splashLogoRight                             { transform: translateX(-87px) scale(0.82); }
  #splashLogosTrio.logo-one #splashLogoLeft    { transform: translateX(87px) scale(0.82); }
  #splashLogosTrio.logo-one #splashLogoRight   { transform: translateX(-87px) scale(0.82); }
  #splashLogosTrio.logo-exiting #splashLogoLeft  { transform: translateX(-110px) scale(0.5); }
  #splashLogosTrio.logo-exiting #splashLogoRight { transform: translateX(110px) scale(0.5); }

  /* ── Hero ── */
  .hero-logos-trio { gap: 1rem; }
  .trio-img-side { width: 78px; height: 78px; }
  .hero-logo { width: 78px; height: 78px; }
  .hero-logos-trio img[src="Logo-2.jpeg"] { width: 60px !important; height: 60px !important; }
  .hero-stats { gap: 0.3rem; }
  .hstat strong { font-size: 1.6rem; }
  .hstat span { font-size: 0.72rem; letter-spacing: 1px; }
  .hstat-line { height: 22px; }

  /* ── Section headings ── */
  .about-eyebrow,
  .centres-eyebrow, .services-eyebrow, .seamen-eyebrow,
  .helpline-eyebrow, .contact-eyebrow {
    font-size: 1.05rem;
    letter-spacing: 2px;
  }
  .about-heading,
  .centres-heading, .services-heading, .seamen-heading,
  .helpline-heading, .contact-heading {
    font-size: clamp(1.75rem, 7.5vw, 2.5rem);
  }

  /* ── Footer ── */
  .footer-logos-trio { gap: 0.75rem; justify-content: center; }
  .ftl-item img { width: 80px !important; height: 80px !important; max-width: 80px !important; }
  .ftl-main img { width: 80px !important; height: 80px !important; max-width: 80px !important; }
  .footer-logos-trio img[src="Logo-2.jpeg"] { width: 65px !important; height: 65px !important; max-width: 65px !important; }

  /* ── Modal ── */
  .order-modal { padding: 1.5rem 1rem; }
  .order-modal-title { font-size: 1.3rem; }
  .order-form-grid { grid-template-columns: 1fr; }
  .order-summary-preview { font-size: 0.8rem; }

  /* ── Phone input ── */
  .phone-input-wrap .country-code-select { width: 88px; font-size: 0.82rem; padding: 0.85rem 0.4rem; }
}

@media (max-width: 360px) {
  /* ── Very small phones ── */
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 0.5rem 1rem; }
  .hstat-line { display: none; }
  .splash-title { font-size: 1.1rem; }
  .splash-sub { font-size: 0.62rem; }
  .acard-photos { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   CUSTOMER AUTH MODAL
   ══════════════════════════════════════ */
.nav-customer-btn {
  background: rgba(20,163,168,0.15) !important;
  border: 1px solid rgba(20,163,168,0.4) !important;
  color: #14a3a8 !important;
  padding: 5px 14px !important;
  border-radius: 20px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: background 0.2s;
}
.nav-customer-btn:hover { background: rgba(20,163,168,0.28) !important; }

.cauth-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.cauth-overlay.open { opacity: 1; pointer-events: all; }

.cauth-card {
  background: #0a1628; border: 1px solid rgba(20,163,168,0.25);
  border-radius: 18px; padding: 36px; width: 100%; max-width: 400px;
  position: relative; margin: 16px;
}
.cauth-close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none; color: #64748b; font-size: 18px; cursor: pointer;
}
.cauth-close:hover { color: #e2e8f0; }
.cauth-logo { font-size: 36px; text-align: center; margin-bottom: 10px; }
.cauth-title { text-align: center; font-size: 20px; font-weight: 700; color: #e2e8f0; margin-bottom: 4px; }
.cauth-sub { text-align: center; font-size: 13px; color: #64748b; margin-bottom: 24px; }

.cauth-tabs {
  display: flex; gap: 4px; background: rgba(255,255,255,0.05);
  border-radius: 8px; padding: 4px; margin-bottom: 24px;
}
.cauth-tab {
  flex: 1; padding: 8px; border: none; background: none;
  color: #94a3b8; font-size: 14px; font-weight: 500; border-radius: 6px; cursor: pointer;
}
.cauth-tab.active { background: #14a3a8; color: #fff; }

.cauth-group { margin-bottom: 16px; }
.cauth-group label { display: block; font-size: 13px; color: #94a3b8; margin-bottom: 6px; }
.cauth-group input {
  width: 100%; padding: 10px 14px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; color: #e2e8f0; font-size: 14px; outline: none;
  font-family: inherit;
}
.cauth-group input:focus { border-color: #14a3a8; }
.cauth-pw-wrap { position: relative; }
.cauth-pw-wrap input { padding-right: 42px; }
.cauth-eye {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: #64748b;
  padding: 0; display: flex; align-items: center;
}
.cauth-eye:hover { color: #14a3a8; }
.cauth-eye svg { width: 18px; height: 18px; }
.cauth-error { color: #f87171; font-size: 13px; margin-bottom: 10px; min-height: 18px; }
.cauth-submit-btn {
  width: 100%; padding: 12px; background: #14a3a8; color: #fff;
  border: none; border-radius: 8px; font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: inherit;
}
.cauth-submit-btn:hover { background: #0d8a8f; }
.cauth-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Centres — scrolling photo background */
#centres { background: #cce7f8; overflow: hidden; }
#centres .centres-content .section-eyebrow,
#centres .centres-content .centres-heading,
#centres .centres-content .centres-sub { color: #fff !important; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
#centres .centres-content .centres-heading em { color: var(--gold) !important; }
#centres .port-card { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); backdrop-filter: blur(6px); }
#centres .port-card:hover { background: rgba(255,255,255,0.22); }
#centres .port-card h3,
#centres .port-num,
#centres .port-name,
#centres .port-state,
#centres .port-anchor,
#centres .port-view,
#centres .port-features li,
#centres .port-open-btn { color: #fff !important; }
#centres .port-num { color: var(--gold) !important; }
#centres .port-view { color: rgba(255,255,255,0.7) !important; }

.centres-bg-scroll {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.centres-scroll-track {
  display: flex;
  gap: 0;
  height: 100%;
  width: max-content;
  animation: scrollLeft 28s linear infinite;
}
.centres-scroll-track:hover { animation-play-state: paused; }
.centres-scroll-img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}
.centres-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,15,30,0.52);
  z-index: 1;
}
.centres-content {
  position: relative;
  z-index: 2;
}

/* About scrolling photo strip */
.about-scroll-strip {
  overflow: hidden;
  margin: 40px 0 10px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.about-scroll-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollLeft 18s linear infinite;
}
.about-scroll-track:hover { animation-play-state: paused; }
.about-scroll-img {
  height: 220px;
  width: 340px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

#services {
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
}
#services .services-eyebrow,
#services .services-heading,
#services .services-sub { color: #fff !important; }
#services .services-heading em { color: #14a3a8 !important; }
#services .svc-card {
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  backdrop-filter: blur(8px);
  color: #fff !important;
}
#services .svc-card h4 { color: #fff !important; }
#services .svc-card p  { color: rgba(255,255,255,0.80) !important; }

.about-scroll-side {
  min-width: 0;
  height: 520px;
  overflow: hidden;
  border-radius: 16px;
  mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
}
.about-scroll-strip--side { height: 100%; overflow: hidden; position: relative; }
.about-scroll-track--vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  animation: scrollUp 14s linear infinite;
}
.about-scroll-track--vertical:hover { animation-play-state: paused; }
.about-scroll-img--side {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
@keyframes scrollUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* OTP step */
.cauth-otp-info { text-align: center; margin-bottom: 20px; color: #94a3b8; font-size: 14px; }
.cauth-otp-info .cauth-otp-icon { font-size: 32px; margin-bottom: 8px; }
.cauth-otp-info strong { display: block; color: #e2e8f0; margin-top: 4px; font-size: 13px; word-break: break-all; }
.cauth-otp-input {
  letter-spacing: 0.3em; font-size: 22px !important; text-align: center;
  font-weight: 700 !important; padding: 12px 14px !important;
}
.cauth-resend { text-align: center; font-size: 13px; color: #64748b; margin-top: 14px; }
.cauth-resend a { color: #14a3a8; text-decoration: none; }
.cauth-resend a:hover { text-decoration: underline; }

/* Order success additions */
.om-order-id { font-size: 13px; color: #94a3b8; margin-top: 10px; }
.om-track-btn {
  display: inline-block; margin-top: 14px; padding: 10px 22px;
  background: #14a3a8; color: #fff; border-radius: 8px;
  text-decoration: none; font-size: 14px; font-weight: 600;
}
.om-track-btn:hover { background: #0d8a8f; }
