/* ═══════════════════════════════
   ADMIN FLOAT BUTTON
═══════════════════════════════ */
.admin-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 8999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(28,28,30,0.92);
  border: 1.5px solid rgba(201,162,39,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.45);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.admin-float:hover {
  transform: scale(1.1);
  border-color: rgba(201,162,39,0.95);
  box-shadow: 0 8px 24px rgba(0,0,0,0.55);
}
.admin-float svg {
  width: 20px; height: 20px;
}
.admin-float-no-wa {
  bottom: 28px;
}

/* ═══════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.65), 0 4px 12px rgba(0,0,0,0.35);
  animation: none;
}
.wa-float svg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: #1c1c1e;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
  border: 1px solid rgba(201,162,39,0.3);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.3); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ═══════════════════════════════
   SPLASH
═══════════════════════════════ */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  background: #1c1c1e;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  transition: opacity 0.6s ease;
}
.splash.hide { opacity: 0; pointer-events: none; }

.splash-stamp-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 200px; height: 200px;
}
.splash-logo {
  width: 180px; height: 180px; border-radius: 50%;
  object-fit: cover; border: 5px solid #c9a227;
  position: relative; z-index: 2;
  animation: stamp-drop 0.65s cubic-bezier(0.34,1.56,0.64,1) both;
  animation-delay: 0.3s;
  box-shadow: 0 12px 48px rgba(0,0,0,0.6);
}
.splash-ink {
  position: absolute; inset: 0; border-radius: 50%;
  border: 6px solid #c9a227; opacity: 0;
  animation: ink-ring 0.6s ease-out forwards;
  animation-delay: 0.9s;
}
.splash-ink2 {
  position: absolute; inset: -14px; border-radius: 50%;
  border: 3px solid rgba(201,162,39,0.4); opacity: 0;
  animation: ink-ring 0.7s ease-out forwards;
  animation-delay: 1.05s;
}
.splash-text {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
  animation: text-rise 0.45s ease-out forwards;
  animation-delay: 0.9s;
}
.splash-text span {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: #fff;
}
.splash-sub {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.75rem !important; font-weight: 600 !important;
  letter-spacing: 0.22em !important; text-transform: uppercase;
  color: #c9a227 !important;
}
@keyframes stamp-drop {
  0%   { transform: scale(0); opacity: 1; }
  55%  { transform: scale(1.15); }
  75%  { transform: scale(0.92); }
  90%  { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes ink-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}
@keyframes text-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════
   BASE
═══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown:  #1c1c1e;
  --brown2: #2c2c2e;
  --brown3: #3a3a3c;
  --gold:   #c9a227;
  --gold2:  #e8c547;
  --cream:  #f2f2f7;
  --cream2: #ffffff;
  --cream3: #e5e5ea;
  --white:  #ffffff;
  --text:   #1c1c1e;
  --muted:  #6c6c70;
  --r:      18px;
  --glass-light: rgba(255,255,255,0.72);
  --glass-dark:  rgba(28,28,30,0.82);
  --blur: blur(20px) saturate(180%);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #f2f2f7;
  background-image:
    radial-gradient(ellipse 80% 60% at 15% 10%, rgba(201,162,39,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 85% 90%, rgba(28,28,30,0.05) 0%, transparent 55%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }


/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
  background: transparent;
}
.navbar.scrolled {
  background: var(--glass-dark);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 32px rgba(0,0,0,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-logo {
  width: 50px; height: 50px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold);
  box-shadow: 0 0 12px rgba(201,162,39,0.4);
}
.nav-title-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: #fff;
}
.nav-title-sub {
  font-size: 0.65rem; color: var(--gold);
  letter-spacing: 0.14em; text-transform: uppercase; display: block;
}
.nav-links { display: flex; gap: 0; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem; font-weight: 500;
  padding: 8px 16px; border-radius: 6px;
  position: relative; transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 16px; right: 16px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.25s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--gold2); }
.nav-links a:hover::after { transform: scaleX(1); }

.hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--glass-dark);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a {
  color: rgba(255,255,255,0.88); padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.95rem;
}
.nav-mobile.open { display: flex; }


/* ═══════════════════════════════
   HERO  —  diagonal split
═══════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--brown);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 0;
}

/* left ship panel — fades out toward centre */
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 58%; height: 100%;
  background:
    linear-gradient(to right, rgba(28,28,30,0.15) 0%, rgba(28,28,30,0.85) 100%),
    url('Photos/ship-1.jpg');
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(to right, black 55%, transparent 100%);
  mask-image: linear-gradient(to right, black 55%, transparent 100%);
}

/* right ship panel — fades out toward centre */
.hero-ship-right {
  position: absolute; top: 0; right: 0;
  width: 58%; height: 100%;
  background:
    linear-gradient(to left, rgba(28,28,30,0.15) 0%, rgba(28,28,30,0.85) 100%),
    url('ship-2.jpg');
  background-size: cover;
  background-position: center top;
  -webkit-mask-image: linear-gradient(to left, black 55%, transparent 100%);
  mask-image: linear-gradient(to left, black 55%, transparent 100%);
  z-index: 0;
}

/* subtle gold glow at the centre seam */
.hero-center-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 2px; height: 100%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(201,162,39,0.5) 25%,
    rgba(201,162,39,0.7) 50%,
    rgba(201,162,39,0.5) 75%,
    transparent 100%);
  z-index: 1;
  filter: blur(3px);
}

/* scattered gold dots */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(201,162,39,0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 120px 32px 100px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; width: 100%;
}

.hero-left { display: flex; flex-direction: column; gap: 24px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}
.hero-eyebrow span { display: inline-block; width: 32px; height: 2px; background: var(--gold); }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 6.5vw, 5.5rem);
  font-weight: 900; color: #fff;
  line-height: 1.05; letter-spacing: -0.01em;
}
.hero-title em { color: var(--gold); font-style: normal; }

.hero-tagline {
  font-size: 1.2rem; font-weight: 600;
  color: rgba(255,255,255,0.9);
  max-width: 480px; line-height: 1.85;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--brown);
  font-weight: 700; font-size: 0.9rem;
  padding: 13px 28px; border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.03em;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85);
  font-weight: 600; font-size: 0.9rem;
  padding: 11px 26px; border-radius: 50px;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  display: flex; gap: 32px; padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 8px;
}
.hero-stat-num {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--gold);
}
.hero-stat-label {
  display: block; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}

.hero-right {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-logo-wrap {
  position: relative;
  width: 280px; height: 280px;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute; inset: -16px;
  border-radius: 50%;
  border: 2px dashed rgba(201,162,39,0.35);
  animation: spin-slow 18s linear infinite;
}
.hero-logo-wrap::after {
  content: '';
  position: absolute; inset: -36px;
  border-radius: 50%;
  border: 1px dashed rgba(201,162,39,0.15);
  animation: spin-slow 28s linear infinite reverse;
}
.hero-logo {
  width: 280px; height: 280px; border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--gold);
  box-shadow: 0 0 80px rgba(201,162,39,0.3), 0 24px 64px rgba(0,0,0,0.4);
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero-badge {
  position: absolute; bottom: 10px; right: -20px;
  background: var(--gold); color: var(--brown);
  font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 18px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(201,162,39,0.4);
  white-space: nowrap;
}


/* ═══════════════════════════════
   SECTION BASE
═══════════════════════════════ */
.section { padding: 64px 24px; }
.section.dark { background: var(--brown); }
.section.mid  { background: var(--brown2); }
.section.light { background: var(--cream); }
.section.cream2 { background: var(--cream2); border-top: 1px solid rgba(60,60,67,0.08); border-bottom: 1px solid rgba(60,60,67,0.08); }

.container { max-width: 1100px; margin: 0 auto; }

.s-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.s-tag::before { content: '— '; }
.s-tag::after  { content: ' —'; }

h2.heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; line-height: 1.15;
}
h2.heading.light-text { color: #fff; }
h2.heading.dark-text  { color: var(--text); }

.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px; margin: 12px 0 20px;
}


/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */
#about {
  background: var(--brown) url('ship-5.jpg') center/cover no-repeat;
  position: relative;
}
#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6,6,8,0.68);
  z-index: 0;
}
#about .container { position: relative; z-index: 1; }
#about .divider   { background: var(--gold); }

.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.about-text p {
  color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.9;
  margin-bottom: 24px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: #fff; font-weight: 700; }

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 56px;
}
.astat {
  background: var(--glass-light);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: var(--r);
  padding: 24px 16px; text-align: center;
  border: 1px solid rgba(255,255,255,0.6);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.astat:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.astat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 900; color: var(--brown);
  display: block;
}
.astat-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted); display: block; margin-top: 6px;
}

.about-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.about-logos img {
  height: 160px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s;
}
.about-logos img:hover {
  transform: translateY(-4px);
}

.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-img-wrap {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(28,28,30,0.2);
  aspect-ratio: 3/2;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.about-img-placeholder {
  border: 2px dashed rgba(201,162,39,0.45);
  background: rgba(201,162,39,0.04);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder::after {
  content: '+ Photo';
  color: rgba(201,162,39,0.5);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.about-float {
  position: absolute; bottom: 0; left: 20px;
  background: var(--gold); color: var(--brown);
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 700;
  padding: 16px 22px; border-radius: 14px;
  box-shadow: 0 8px 32px rgba(201,162,39,0.45);
  max-width: 220px; line-height: 1.5;
  border-left: 4px solid var(--brown);
}


/* ═══════════════════════════════
   AFFILIATIONS
═══════════════════════════════ */
#affiliations {
  background: var(--brown) url('ship-3.jpg') center/cover no-repeat;
  position: relative;
}
#affiliations::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.80);
  z-index: 0;
}
#affiliations .container { position: relative; z-index: 1; }

.affil-header { margin-bottom: 48px; }
.affil-header .s-tag { color: var(--gold2); }
.affil-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.affil-text p {
  color: rgba(255,255,255,0.72); font-size: 1.05rem;
  font-weight: 500; line-height: 1.9; margin-bottom: 18px;
}
.affil-text strong { color: var(--gold2); }
.affil-badges { display: flex; flex-direction: column; gap: 16px; }

/* Logos — floating, no box */
.affil-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  justify-items: center;
  align-items: center;
}

/* Logo medallions — white circle, gold ring */
.affil-logo-item {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 2px rgba(201,162,39,0.65),
    0 0 0 5px rgba(201,162,39,0.18),
    0 8px 28px rgba(0,0,0,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}
.affil-logo-item:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 2px rgba(201,162,39,0.95),
    0 0 0 6px rgba(201,162,39,0.30),
    0 16px 40px rgba(0,0,0,0.55);
}
.affil-logo-item img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

/* MNWB — circular clip so badge shows directly, no double white */
.affil-logo-mnwb {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  padding: 0;
  box-shadow:
    0 0 0 4px rgba(201,162,39,0.75),
    0 0 0 10px rgba(201,162,39,0.22),
    0 14px 56px rgba(0,0,0,0.60);
}
.affil-logo-mnwb:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow:
    0 0 0 4px rgba(201,162,39,1),
    0 0 0 11px rgba(201,162,39,0.38),
    0 24px 68px rgba(0,0,0,0.68);
}
.affil-logo-mnwb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.affil-badge {
  display: flex; align-items: center; gap: 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r); padding: 20px 24px;
  transition: background 0.2s, transform 0.2s;
}
.affil-badge:hover { background: rgba(255,255,255,0.13); transform: translateX(4px); }
.affil-abbr {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900;
  color: var(--gold); min-width: 64px; text-align: center;
}
.affil-name {
  font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.85);
}


/* ═══════════════════════════════
   OBJECTIVES
═══════════════════════════════ */
#objectives {
  background: var(--brown) url('ship-4.jpg') center/cover no-repeat;
  position: relative;
}
#objectives::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6,6,8,0.52);
  z-index: 0;
}
#objectives .container { position: relative; z-index: 1; }
#objectives .divider   { background: var(--gold); }

.objectives-intro { max-width: 560px; margin-bottom: 56px; }
.objectives-intro p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.8; }

.objectives-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.obj-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.obj-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: var(--r);
  padding: 28px 22px;
  border: 1px solid rgba(255,255,255,0.65);
  border-top: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.obj-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.35); }
.obj-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.obj-card p { color: rgba(255,255,255,0.80); font-size: 0.9rem; line-height: 1.75; }


/* ═══════════════════════════════
   SERVICE CARDS
═══════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.scard {
  border-radius: 20px; overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 32px 36px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.25s, background 0.25s;
  backdrop-filter: blur(4px);
}
.scard:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.scard.gold-card {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  border-color: transparent;
}
.scard.gold-card h3 { color: var(--brown); }
.scard.gold-card p  { color: rgba(28,28,30,0.8); }
.scard.gold-card .scard-icon { background: rgba(28,28,30,0.12); color: var(--brown); }
.scard.gold-card .btn-scard { border-color: var(--brown); color: var(--brown); }
.scard.gold-card .btn-scard:hover { background: var(--brown); color: var(--gold); }

.scard-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(201,162,39,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.scard h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: #fff;
}
.scard p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.75; flex: 1; }
.btn-scard {
  display: inline-flex; align-items: center; gap: 6px;
  border: 2px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85);
  font-weight: 600; font-size: 0.82rem; padding: 9px 20px;
  border-radius: 50px; transition: all 0.2s; align-self: flex-start;
  margin-top: auto;
}
.btn-scard:hover { border-color: var(--gold); color: var(--gold); }


/* ═══════════════════════════════
   GALLERY
═══════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}
.g-item {
  border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
}
.g-item.tall { grid-row: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.g-item:hover img { transform: scale(1.07); }
.g-cap {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,30,0.85) 0%, transparent 55%);
  display: flex; align-items: flex-end;
  padding: 18px;
  opacity: 0; transition: opacity 0.3s;
}
.g-item:hover .g-cap { opacity: 1; }
.g-cap span {
  font-size: 0.82rem; font-weight: 600; color: #fff;
  letter-spacing: 0.02em;
}


/* ═══════════════════════════════
   CONTACT
═══════════════════════════════ */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
}
.contact-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: #fff;
  margin-bottom: 28px;
}
.citem {
  display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start;
}
.citem-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(201,162,39,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.clabel {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 4px;
}
.cval {
  font-size: 0.95rem; color: rgba(255,255,255,0.82);
  line-height: 1.65; display: block;
}
a.cval:hover { color: var(--gold2); }

.why-box {
  background: rgba(255,255,255,0.07);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px; padding: 36px;
}
.why-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: #fff;
  margin-bottom: 14px;
}
.why-box p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.why-checks { display: flex; flex-direction: column; gap: 12px; }
.why-check {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.82); font-size: 0.9rem;
}
.why-check::before {
  content: '✓'; width: 26px; height: 26px;
  background: rgba(201,162,39,0.2); color: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}


/* ═══════════════════════════════
   SEAFARERS HELPLINE
═══════════════════════════════ */
.helpline-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: var(--brown2);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.28);
}
.helpline-badge {
  font-size: 2.8rem;
  margin-bottom: 16px;
  line-height: 1;
}
.helpline-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}
.helpline-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.btn-helpline {
  display: inline-block;
  background: var(--gold);
  color: #1c1c1e;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(201,162,39,0.35);
}
.btn-helpline:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,162,39,0.5);
}

/* Modal overlay */
.hl-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.hl-overlay.open { display: flex; }

/* Modal card */
.hl-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 36px 36px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: hlSlideUp 0.28s ease;
}
@keyframes hlSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hl-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  font-size: 1.8rem; color: #6c6c70;
  cursor: pointer; line-height: 1;
  transition: color 0.15s;
}
.hl-close:hover { color: #1c1c1e; }
.hl-modal-header { text-align: center; margin-bottom: 28px; }
.hl-icon { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.hl-modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900;
  color: var(--brown); margin-bottom: 8px;
}
.hl-modal-header p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.hl-modal-header strong { color: var(--brown); }

/* Modal form fields */
.hl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hl-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.hl-group label {
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--brown); margin-bottom: 7px;
}
.hl-group input,
.hl-group textarea {
  border: 1.5px solid var(--cream3);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--brown);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.hl-group input:focus,
.hl-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}
.hl-form-status {
  font-size: 0.9rem; font-weight: 600;
  min-height: 24px; margin-bottom: 10px;
  text-align: center;
}
.hl-form-status.success { color: #1a7f37; }
.hl-form-status.error   { color: #c0392b; }
.btn-hl-send {
  width: 100%;
  background: var(--gold);
  color: #1c1c1e;
  font-size: 1rem; font-weight: 700;
  padding: 15px;
  border: none; border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
}
.btn-hl-send:hover:not(:disabled) {
  background: var(--gold2);
  transform: translateY(-1px);
}
.btn-hl-send:disabled { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 520px) {
  .helpline-box { padding: 36px 24px; }
  .hl-modal { padding: 32px 20px 28px; }
  .hl-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer {
  background: #111113;
  padding: 64px 24px 24px;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr; gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.f-brand { display: flex; gap: 18px; align-items: flex-start; }
.f-logo {
  width: 68px; height: 68px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold); flex-shrink: 0;
}
.f-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 4px;
}
.f-sub {
  font-size: 0.68rem; color: var(--gold);
  letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 14px;
}
.f-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 8px; }
.f-desc a { color: rgba(255,255,255,0.45); }
.f-desc a:hover { color: var(--gold); }

.f-links h4 {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); margin-bottom: 16px;
}
.f-links { display: flex; flex-direction: column; }
.f-links a {
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
  padding: 5px 0; transition: color 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.f-links a:hover { color: #fff; padding-left: 6px; }

.footer-bottom {
  max-width: 1100px; margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom span { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.f-motto { font-style: italic; color: rgba(201,162,39,0.5) !important; }


/* ═══════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════ */
.page-hero {
  background:
    linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.62)),
    url('exec-bg.png') center/cover no-repeat;
  padding: 110px 24px 56px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,162,39,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }


.section--ship-bg {
  background: var(--cream);
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900; color: #fff;
  margin: 10px 0 16px; line-height: 1.1;
}
.page-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem; line-height: 1.8; max-width: 560px; margin: 0 auto;
}

.nav-active {
  color: var(--gold2) !important;
}
.nav-active::after { transform: scaleX(1) !important; }

/* ═══════════════════════════════
   EXECUTIVE COMMITTEE
═══════════════════════════════ */
.ec-tier {
  display: flex; justify-content: center; gap: 20px;
  margin-bottom: 16px;
}
.ec-tier.cols-2 { display: grid; grid-template-columns: repeat(2,1fr); max-width: 640px; margin: 0 auto 16px; }
.ec-tier.cols-3 { display: grid; grid-template-columns: repeat(3,1fr); max-width: 860px; margin: 0 auto 16px; }
.ec-tier.cols-4 { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1000px; margin: 0 auto 0; }

.ec-tier-label {
  text-align: center;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--muted);
  margin: 32px 0 14px;
  position: relative;
}
.ec-tier-label::before,
.ec-tier-label::after {
  content: '';
  position: absolute; top: 50%;
  width: 28%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cream3));
}
.ec-tier-label::before { right: 54%; }
.ec-tier-label::after  { left: 54%; background: linear-gradient(90deg, var(--cream3), transparent); }

.ec-card {
  background: var(--glass-light);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: 20px;
  padding: 28px 20px 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.65);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.1);
}
.ec-card.president {
  background: var(--brown);
  max-width: 320px;
  border-bottom: 3px solid var(--gold2);
}
.ec-card.president h3  { color: #fff; }
.ec-card.president .ec-role { color: var(--gold); }
.ec-card.president .ec-avatar {
  background: rgba(201,162,39,0.2);
  color: var(--gold2);
  border: 2px solid var(--gold);
}

.ec-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--cream2); color: var(--brown);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  border: 2px solid var(--cream3);
}
.ec-avatar.sm { width: 48px; height: 48px; font-size: 0.9rem; }

.ec-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: 6px; line-height: 1.3;
}
.ec-role {
  font-size: 0.78rem; color: var(--muted);
  font-style: italic; font-weight: 500;
}

@media (max-width: 760px) {
  .ec-tier.cols-2,
  .ec-tier.cols-3 { grid-template-columns: repeat(2,1fr); max-width: 100%; }
  .ec-tier.cols-4 { grid-template-columns: repeat(2,1fr); max-width: 100%; }
}
@media (max-width: 480px) {
  .ec-tier.cols-2,
  .ec-tier.cols-3,
  .ec-tier.cols-4 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   MEMBERSHIP PAGE
═══════════════════════════════ */
.mem-top-grid {
  display: grid; grid-template-columns: 1fr auto;
  gap: 56px; align-items: start;
}

/* Admission text */
.mem-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--text);
  margin-bottom: 20px;
}
.mem-admission-list {
  list-style: disc; padding-left: 20px;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px;
}
.mem-admission-list li { color: var(--muted); font-size: 0.95rem; line-height: 1.8; }

.mem-fees { display: flex; flex-direction: column; gap: 12px; }
.mem-fee-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; padding-bottom: 12px;
  border-bottom: 1px dashed var(--cream3);
}
.mem-fee-label { font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.mem-fee-val {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem; font-weight: 700; color: var(--brown);
  white-space: nowrap;
}
.mem-fee-note {
  font-size: 0.82rem; color: var(--muted);
  font-style: italic; margin-top: 4px; line-height: 1.7;
}

/* QR card */
.mem-payment { flex-shrink: 0; }
.mem-qr-card {
  background: var(--glass-light);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.65);
  text-align: center;
  min-width: 240px;
}
.mem-qr-header {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 14px;
}
.mem-qr-logo { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold); }
.mem-qr-header span { font-size: 0.78rem; font-weight: 700; color: var(--brown); }

.mem-qr-scan {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}

.mem-qr-box {
  width: 210px; height: 210px; margin: 0 auto 16px;
  border-radius: 12px; overflow: hidden;
  border: 2px solid var(--cream3);
  background: #fff;
}
.mem-qr-box img { width: 100%; height: 100%; object-fit: contain; display: block; }

.qr-awaiting {
  width: 100%; height: 100%;
  background: var(--cream2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
}
.qr-icon { font-size: 2.5rem; color: var(--cream3); }
.qr-awaiting p { font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.qr-sub { font-size: 0.7rem !important; color: var(--cream3) !important; }

.mem-upi-id {
  display: flex; flex-direction: column; gap: 2px;
  margin-bottom: 14px;
}
.upi-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.upi-val { font-size: 0.9rem; font-weight: 700; color: var(--brown); }

.mem-bhim {
  display: inline-flex; align-items: center; gap: 4px;
  background: #00539c; border-radius: 6px;
  padding: 5px 12px;
}
.bhim-text { font-size: 0.85rem; font-weight: 900; color: #fff; letter-spacing: 0.05em; }
.upi-text  { font-size: 0.75rem; font-weight: 700; color: #c9a227; letter-spacing: 0.08em; }

/* Form */
.form-header { margin-bottom: 40px; }
.form-note { color: var(--muted); font-size: 0.9rem; margin-top: 12px; }
.req { color: #c0392b; font-weight: 700; }

.mem-form {
  background: var(--glass-light);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 24px;
  padding: 48px; box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  max-width: 860px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 20px;
}
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea {
  background: var(--cream); border: 1.5px solid var(--cream3);
  border-radius: 10px; padding: 13px 16px;
  font-size: 0.95rem; font-family: 'Inter', sans-serif;
  color: var(--text); transition: border 0.2s, box-shadow 0.2s; resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}
.form-section-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--gold);
  padding: 8px 0 16px; border-top: 1px solid var(--cream2);
  margin-bottom: 4px; margin-top: 8px;
}
.payment-notice {
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.35);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.9rem; font-weight: 600;
  color: var(--text); line-height: 1.6;
  margin-bottom: 20px;
}

.form-group select {
  background: var(--cream); border: 1.5px solid var(--cream3);
  border-radius: 10px; padding: 13px 16px;
  font-size: 0.95rem; font-family: 'Inter', sans-serif;
  color: var(--text); transition: border 0.2s, box-shadow 0.2s;
  appearance: none;
  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 d='M1 1l5 5 5-5' stroke='%236c6c70' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.form-group select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}

.form-submit-row { margin-top: 28px; }

/* File upload boxes */
.file-upload-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 28px 16px;
  border: 2px dashed rgba(201,162,39,0.45);
  border-radius: 10px;
  background: rgba(201,162,39,0.04);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
  box-sizing: border-box;
}
.file-upload-box:hover,
.file-upload-box.has-file {
  border-color: var(--gold);
  background: rgba(201,162,39,0.10);
}
.file-upload-box input[type="file"] {
  display: none;
}
.file-upload-icon {
  font-size: 2rem;
  line-height: 1;
}
.file-upload-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brown);
  word-break: break-all;
}
.file-upload-hint {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #888;
}
.mem-success {
  margin-top: 20px; padding: 18px 24px;
  background: rgba(201,162,39,0.12); border: 1px solid var(--gold);
  border-radius: 10px; color: var(--brown);
  font-weight: 600; font-size: 0.95rem; text-align: center;
}

@media (max-width: 760px) {
  .mem-top-grid { grid-template-columns: 1fr; }
  .mem-payment { display: flex; justify-content: center; }
  .mem-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   WELFARE PAGE
═══════════════════════════════ */
.welfare-split {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 56px; align-items: start;
}
.welfare-split--reverse {
  grid-template-columns: 140px 1fr;
}

.welfare-icon-block { display: flex; justify-content: center; padding-top: 8px; }

.welfare-big-icon {
  width: 100px; height: 100px; border-radius: 24px;
  background: rgba(201,162,39,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
}
.welfare-big-icon--dark {
  background: rgba(201,162,39,0.15);
}

.welfare-lead {
  color: var(--muted); font-size: 1rem; line-height: 1.85;
  margin-bottom: 20px;
}
.welfare-lead strong { color: var(--text); }

.welfare-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 20px;
}
.welfare-list li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--muted); font-size: 0.93rem; line-height: 1.65;
}
.welfare-list li::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 7px;
}
.welfare-list--light li { color: rgba(255,255,255,0.75); }
.welfare-list--light li::before { background: var(--gold2); }

.welfare-note {
  font-size: 0.88rem; font-style: italic;
  color: var(--muted);
  border-top: 1px solid var(--cream3);
  padding-top: 16px; line-height: 1.75;
}

@media (max-width: 760px) {
  .welfare-split { grid-template-columns: 1fr; gap: 24px; }
  .welfare-icon-block { justify-content: flex-start; }
}

/* ═══════════════════════════════
   MARITIME TRAINING
═══════════════════════════════ */
.training-intro {
  color: var(--muted); font-size: 1rem; line-height: 1.85;
  max-width: 780px; margin-bottom: 20px;
}

.training-intro-points {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.training-intro-points li {
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--muted); font-size: 0.92rem; line-height: 1.6;
}
.training-intro-points li::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 6px;
}

.training-intro-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 36px;
}

.training-hero-img {
  position: relative;
  flex-shrink: 0;
}
.training-hero-img img {
  width: 480px;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 20px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.18);
  border: 2px solid rgba(201,162,39,0.3);
}
.training-hero-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(28,28,30,0.78) 0%, transparent 100%);
  padding: 28px 20px 16px;
  border-radius: 0 0 24px 24px;
}
.training-hero-caption span {
  color: #fff; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em;
}

@media (max-width: 760px) {
  .training-intro-split { grid-template-columns: 1fr; }
  .training-hero-img img { width: 100%; max-width: 480px; height: 260px; margin: 0 auto; }
}

.training-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}

.training-card {
  background: var(--glass-light);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: 22px;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.65);
  border-top: 4px solid var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.training-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.training-card-icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: rgba(201,162,39,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}

.training-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--text); line-height: 1.3;
}

.training-card p {
  color: var(--muted); font-size: 0.92rem; line-height: 1.75;
}
.training-card p strong { color: var(--text); }

.training-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  margin: 4px 0;
}
.training-list li {
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--muted); font-size: 0.88rem; line-height: 1.65;
}
.training-list li::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 6px;
}

.training-card-note {
  font-size: 0.85rem !important;
  color: var(--muted); font-style: italic;
  border-top: 1px solid var(--cream3);
  padding-top: 14px; margin-top: auto !important;
}

@media (max-width: 960px) {
  .training-grid { grid-template-columns: 1fr; max-width: 520px; }
}

/* ═══════════════════════════════
   SCROLL REVEAL
═══════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 960px) {
  .hero {
    background-color: #1c1c1e;
    background-image: url('ship-2.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
  /* repurpose ::before as a full dark overlay on mobile */
  .hero::before {
    display: block !important;
    content: '';
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(28,28,30,0.35) 0%, rgba(28,28,30,0.72) 100%);
    clip-path: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    z-index: 1;
  }
  .hero-inner        { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-ship-right   { display: none; }
  .hero-center-glow  { display: none; }
  .hero-eyebrow      { justify-content: center; }
  .hero-actions      { justify-content: center; }
  .hero-stats        { justify-content: center; }
  .hero-right        { justify-content: center; }
  .about-split       { grid-template-columns: 1fr; }
  .affil-body        { grid-template-columns: 1fr; }
  .objectives-grid   { grid-template-columns: repeat(2, 1fr); }
  .services-grid     { grid-template-columns: 1fr; max-width: 100%; }
  .contact-wrap      { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
  .g-item.tall       { grid-row: span 1; }
  .footer-grid       { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .nav-links         { display: none; }
  .hamburger         { display: block; }
  .nav-inner         { padding: 0 20px; }
  .hero-inner        { padding: 100px 20px 60px; }
  .hero-title        { font-size: 2.4rem; }
  .hero-tagline      { font-size: 1rem; }
  .hero-badge        { right: 0; bottom: -10px; font-size: 0.65rem; padding: 8px 14px; }
  .hero-logo-wrap    { width: 200px; height: 200px; }
  .hero-logo         { width: 200px; height: 200px; }
  .objectives-grid   { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: 1fr; }
  .about-stats       { grid-template-columns: 1fr 1fr; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .section           { padding: 48px 16px; }
  .page-hero         { padding: 100px 20px 48px; }
  .page-hero-title   { font-size: 2rem; }
  .training-grid     { grid-template-columns: 1fr; max-width: 100%; }
  .welfare-split     { grid-template-columns: 1fr; gap: 20px; }
  .mem-form          { padding: 24px 16px; }
  .form-row          { grid-template-columns: 1fr; }
  .hero-stats        { flex-direction: column; gap: 16px; align-items: center; }
}


/* ═══════════════════════════════
   CHAT WIDGET
═══════════════════════════════ */

.rmu-chat-widget {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 8998;
  font-family: 'Inter', system-ui, sans-serif;
}

.rmu-chat-toggle {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1c1c1e;
  border: 2px solid rgba(201,162,39,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  animation: rmu-chat-pulse 3s infinite;
  padding: 0;
}
.rmu-chat-toggle:hover {
  transform: scale(1.1);
  border-color: rgba(201,162,39,0.95);
  box-shadow: 0 10px 32px rgba(0,0,0,0.6);
  animation: none;
}
@keyframes rmu-chat-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 0 0 0 rgba(201,162,39,0.25); }
  50%       { box-shadow: 0 6px 28px rgba(0,0,0,0.5), 0 0 0 10px rgba(201,162,39,0.06); }
}

.rmu-chat-toggle svg {
  width: 26px;
  height: 26px;
  position: absolute;
  transition: opacity 0.2s, transform 0.2s;
}
.rmu-chat-icon-open  { opacity: 1;  transform: scale(1);   }
.rmu-chat-icon-close { opacity: 0;  transform: scale(0.6); }
.rmu-chat-toggle.open .rmu-chat-icon-open  { opacity: 0;  transform: scale(0.6); }
.rmu-chat-toggle.open .rmu-chat-icon-close { opacity: 1;  transform: scale(1);   }

.rmu-chat-tooltip {
  position: absolute;
  left: 72px;
  background: #1c1c1e;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
  border: 1px solid rgba(201,162,39,0.3);
}
.rmu-chat-toggle:hover .rmu-chat-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.rmu-chat-panel {
  position: absolute;
  bottom: 72px;
  left: 0;
  width: 360px;
  max-height: 520px;
  background: #1c1c1e;
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform-origin: bottom left;
}
.rmu-chat-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.rmu-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(28,28,30,0.98);
  flex-shrink: 0;
}
.rmu-chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rmu-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201,162,39,0.15);
  border: 2px solid rgba(201,162,39,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.rmu-chat-header-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.2;
}
.rmu-chat-header-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.rmu-chat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34c759;
  display: inline-block;
}
.rmu-chat-header-clear {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.rmu-chat-header-clear:hover {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
}

.rmu-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,162,39,0.25) transparent;
}
.rmu-chat-messages::-webkit-scrollbar { width: 4px; }
.rmu-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(201,162,39,0.25);
  border-radius: 4px;
}

.rmu-msg {
  max-width: 85%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.65;
  word-break: break-word;
}
.rmu-msg--user {
  background: linear-gradient(135deg, #c9a227, #e8c547);
  color: #1c1c1e;
  font-weight: 500;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.rmu-msg--assistant {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.08);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.rmu-msg--typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 18px;
}
.rmu-msg--typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(201,162,39,0.6);
  display: inline-block;
  animation: rmu-bounce 1.2s infinite;
}
.rmu-msg--typing span:nth-child(2) { animation-delay: 0.2s; }
.rmu-msg--typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes rmu-bounce {
  0%, 80%, 100% { transform: translateY(0); }
  40%           { transform: translateY(-6px); }
}

.rmu-chat-input-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(28,28,30,0.98);
  flex-shrink: 0;
}
.rmu-chat-input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px 14px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  resize: none;
  min-height: 42px;
  max-height: 120px;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rmu-chat-input::placeholder { color: rgba(255,255,255,0.3); }
.rmu-chat-input:focus {
  border-color: rgba(201,162,39,0.55);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}
.rmu-chat-send {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #c9a227;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  color: #1c1c1e;
  padding: 0;
}
.rmu-chat-send:hover:not(:disabled) {
  background: #e8c547;
  transform: scale(1.06);
}
.rmu-chat-send:disabled { opacity: 0.45; cursor: not-allowed; }
.rmu-chat-send svg { width: 18px; height: 18px; }

.rmu-chat-footer {
  text-align: center;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
  flex-shrink: 0;
}
.rmu-chat-footer strong { color: rgba(255,255,255,0.3); }

@media (max-width: 480px) {
  .rmu-chat-widget { bottom: 16px; left: 16px; }
  .rmu-chat-panel  { width: calc(100vw - 32px); bottom: 76px; left: 0; }
}

/* ── Voice controls ── */

.rmu-chat-header-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Language toggle */
.rmu-chat-lang {
  display: flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  overflow: hidden;
}
.rmu-lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.04em;
}
.rmu-lang-btn.rmu-lang-active {
  background: rgba(201,162,39,0.25);
  color: #c9a227;
}
.rmu-lang-btn:hover:not(.rmu-lang-active) {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}

/* TTS speaker button */
.rmu-chat-tts-btn {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  padding: 0;
}
.rmu-chat-tts-btn svg { width: 15px; height: 15px; }
.rmu-tts-on  { color: #c9a227; }
.rmu-tts-off { color: rgba(255,255,255,0.25); }
.rmu-tts-off .rmu-tts-waves { display: none; }
.rmu-chat-tts-btn:hover { background: rgba(255,255,255,0.12); }

/* Mic button */
.rmu-chat-mic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  padding: 0;
}
.rmu-chat-mic svg { width: 18px; height: 18px; }
.rmu-chat-mic:hover { background: rgba(255,255,255,0.13); color: #c9a227; border-color: rgba(201,162,39,0.4); }
.rmu-chat-mic.recording {
  background: rgba(255,59,48,0.18);
  border-color: rgba(255,59,48,0.6);
  color: #ff3b30;
  animation: rmu-mic-pulse 1s infinite;
}
@keyframes rmu-mic-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,59,48,0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(255,59,48,0); }
}
