/* ============================================================
   SEASTAR MARITIME — Main Stylesheet
   Professional & Corporate | Navy/White Palette
   ============================================================ */

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

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

:root {
  --navy:       #0d1b2e;
  --navy-mid:   #1a3050;
  --blue:       #1e5f99;
  --blue-light: #2e7bbf;
  --accent:     #5ba3d0;
  --white:      #ffffff;
  --off-white:  #f4f6f9;
  --text:       #2c3e50;
  --text-light: #6b7c93;
  --border:     #dde2ea;
  --font-body:  'Barlow', sans-serif;
  --font-head:  'Barlow Condensed', sans-serif;
}

html {
  scroll-behavior: smooth;
  view-transition-name: root;
}

::view-transition-old(root) {
  animation: none;
  opacity: 1;
}

::view-transition-new(root) {
  animation: none;
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomInSubtle {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOutPage {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

body.page-fade-out {
  animation: fadeOutPage 0.4s ease-out forwards;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: none;
  border: none;
  box-shadow: none;
}

.site-header.scrolled {
  background: linear-gradient(180deg, rgba(13, 27, 46, 0.95) 0%, rgba(13, 27, 46, 0.75) 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-inner {
  max-width: 100%;
  margin: 0;
  padding: 0 40px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 52px;
  height: 52px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.logo-image {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.banner-nav {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: flex-end;
  will-change: display;
}

.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 20px;
  border-radius: 0;
  transition: color 0.2s, background 0.2s;
  position: relative;
  height: 76px;
  display: flex;
  align-items: center;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 2px;
}

.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--white); }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 140px 40px 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--blue) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  animation: slideUpFade 0.8s ease-out 0.2s both;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: none;
  margin: 0 auto;
  animation: slideUpFade 0.8s ease-out 0.4s both;
  white-space: nowrap;
}

/* About page hero specific */
.page-hero-about {
  background-image: linear-gradient(rgba(13, 27, 46, 0.55), rgba(13, 27, 46, 0.55)), url("../images/backgrounds/ceo-bg.jpg");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  text-align: left;
  min-height: 450px;
  justify-content: flex-start;
}

.page-hero-about .page-hero-content {
  max-width: 500px;
}

/* Fleet page hero specific */
.page-hero-fleet {
  background-image: linear-gradient(rgba(13, 27, 46, 0.55), rgba(13, 27, 46, 0.55)), url("../images/backgrounds/vessel-bg.png");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  text-align: left;
  min-height: 450px;
  justify-content: flex-start;
}

.page-hero-fleet .page-hero-content {
  max-width: 500px;
}

/* Contact page hero specific */
.page-hero-contact {
  background-image: linear-gradient(rgba(13, 27, 46, 0.55), rgba(13, 27, 46, 0.55)), url("../images/backgrounds/contact-bg.png");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  text-align: left;
  min-height: 450px;
  justify-content: flex-start;
}

.page-hero-contact .page-hero-content {
  max-width: 500px;
}

/* Services page hero specific */
.page-hero-services {
  background-image: linear-gradient(rgba(13, 27, 46, 0.55), rgba(13, 27, 46, 0.55)), url("../images/backgrounds/service-bg.png");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  text-align: left;
  min-height: 450px;
  justify-content: flex-start;
}

.page-hero-services .page-hero-content {
  max-width: 500px;
}

/* Breadcrumb */
.breadcrumb {
  display: none;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  padding: 90px 40px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-line {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 32px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 60px 40px 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-brand .banner-footer {
  height: 50px;
  width: auto;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.footer-address {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
}

.footer-address strong {
  display: block;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-top: 6px;
}

.footer-address a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-address a:hover { color: var(--white); }

.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   UTILITY
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.btn-accent {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-accent:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

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

.btn-gold {
  background: var(--accent);
  color: var(--navy);
  border-color: var(--accent);
}
.btn-gold:hover {
  background: #b8933e;
  border-color: #b8933e;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .header-inner { padding: 0 24px; }
  .section { padding: 60px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer { padding: 48px 24px 24px; }

  .main-nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px 24px 24px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .main-nav.open { display: flex; }
  .main-nav a { color: var(--navy); padding: 12px 0; }
  .main-nav a:hover { color: var(--blue); }
  .main-nav a.active { color: var(--blue); }
  .main-nav a::after { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   HOME PAGE (index.html)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,22,40,0.55) 0%, rgba(10,22,40,0.75) 100%),
    url('../images/backgrounds/hero-section-bg.jpg') center/cover no-repeat;
  animation: zoomInSubtle 1.2s ease-out forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: var(--white);
  padding: 0 40px;
  max-width: 600px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.hero h1 {
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
  animation: slideUpFade 0.8s ease-out 0.2s both;
}

.hero-sub {
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 48px;
  animation: slideUpFade 0.8s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--white);
  padding: 80px 40px;
}
.intro-strip-header {
  max-width: 1200px;
  margin: 0 auto 48px;
}
.intro-strip-header .section-title {
  font-size: 36px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 24px;
}
.intro-strip-header .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--accent);
}
.intro-strip-inner {
  max-width: 1200px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.intro-strip-footer {
  max-width: 1200px;
  margin: 0 auto;
}
.intro-stat {
  text-align: center;
  padding: 0;
}
.intro-stat-number {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.intro-stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.intro-stat-line {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin: 14px auto 0;
}

/* ── ABOUT TEASER ── */
.about-teaser {
  padding: 80px 40px;
}
.about-teaser-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-teaser-text .section-label {
  margin-bottom: 12px;
}
.about-teaser-text .section-title {
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 24px;
}
.about-teaser-text .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--accent);
}
.about-teaser-text p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-teaser-text .btn { margin-top: 24px; }

/* ── SERVICES TEASER ── */
.services-teaser {
  background: var(--white);
  padding: 80px 40px;
  color: var(--text);
}
.services-teaser-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services-teaser .section-title {
  margin-bottom: 24px;
  color: var(--navy);
  position: relative;
  padding-bottom: 24px;
}
.services-teaser .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--accent);
}
.services-teaser-footer {
  margin-top: 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-radius: 4px;
  padding: 40px 32px;
  transition: box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.service-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  transition: gap 0.2s;
}
.service-card a:hover { gap: 10px; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--blue);
  padding: 70px 40px;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 36px;
}

/* ============================================================
   ABOUT PAGE (about.html)
   ============================================================ */
.about-main { padding: 90px 40px; }
.about-main-inner { max-width: 1200px; margin: 0 auto; }

.about-section-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  animation: slideUpFade 1.2s ease-out forwards;
  opacity: 0;
}

.about-section-block:nth-child(1) { animation-delay: 0.1s; }
.about-section-block:nth-child(2) { animation-delay: 0.25s; }
.about-section-block:nth-child(3) { animation-delay: 0.4s; }
.about-section-block:nth-child(4) { animation-delay: 0.55s; }
.about-section-block:nth-child(5) { animation-delay: 0.7s; }

.about-section-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.about-section-block p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.highlight-quote {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 12px !important;
  line-height: 1.5;
}
.about-list {
  list-style: none;
  margin-top: 12px;
  margin-bottom: 0;
}
.about-list li {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
  padding-left: 0;
}
.about-list strong {
  color: var(--navy);
}

/* Values */
.values-section {
  background: var(--navy);
  padding: 90px 40px;
}
.values-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.values-section .section-title { color: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.1);
  margin-top: 48px;
}
.value-card {
  background: rgba(255,255,255,0.04);
  padding: 44px 36px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.value-card:hover { background: rgba(255,255,255,0.09); }
.value-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* Organization Chart Container */
.org-chart-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.org-chart-image {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Staff Section */
.staff-section {
  padding: 90px 40px;
  background: var(--white);
}
.staff-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.staff-card {
  text-align: center;
}
.staff-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 18px;
  display: block;
  transition: transform 0.3s ease;
}
.staff-card:hover .staff-photo {
  transform: scale(1.08);
}
.staff-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.staff-role {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Company info strip */
.company-strip {
  background: var(--off-white);
  padding: 90px 40px;
}
.company-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.company-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.company-card {
  background: var(--white);
  border-radius: 4px;
  padding: 44px 40px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-top: 4px solid var(--navy);
}
.company-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.company-card .ceo {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.company-card .detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.company-card .detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.detail-row strong {
  color: var(--navy);
  font-weight: 600;
  min-width: 60px;
  flex-shrink: 0;
}
.detail-row a {
  color: var(--blue);
  transition: color 0.2s;
}
.detail-row a:hover { color: var(--navy); }

/* ============================================================
   SERVICES PAGE (services.html)
   ============================================================ */
.services-main {
  padding: 90px 40px;
  background: var(--white);
}
.services-main-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Block */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  animation: slideUpFade 1.2s ease-out forwards;
  opacity: 0;
}
.service-block:first-of-type { padding-top: 0; animation-delay: 0.1s; }
.service-block:nth-of-type(2) { animation-delay: 0.25s; }
.service-block:nth-of-type(3) { animation-delay: 0.4s; }
.service-block:last-of-type { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-num {
  font-family: var(--font-head);
  font-size: 80px;
  font-weight: 800;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: -20px;
}

.service-block h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}

.service-block .section-line { margin-bottom: 24px; }

.service-block p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 14px;
}

/* Sub-services */
.sub-services {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sub-service {
  padding: 22px 24px;
  background: var(--off-white);
  border-left: 3px solid var(--blue);
  border-radius: 0 4px 4px 0;
}

.sub-service h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.sub-service p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Visual panel */
.service-visual {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px 40px;
  color: var(--white);
  height: fit-content;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover .service-visual {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.service-visual-icon {
  width: 56px; height: 56px;
  background: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.service-visual-icon svg { width: 28px; height: 28px; fill: var(--navy); }

.service-visual h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.service-visual ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-visual ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.service-visual ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CARGO SECTION ── */
.cargo-section {
  background: var(--off-white);
  padding: 90px 40px;
}
.cargo-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cargo-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}

.cargo-header p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.9;
}

.cargo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.cargo-card {
  background: var(--white);
  padding: 36px 32px;
}

.cargo-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.cargo-card h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}

.cargo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cargo-tag {
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
  font-family: monospace;
}

/* ── CUSTOMERS BAND ── */
.customers-band {
  background: var(--navy);
  padding: 80px 40px;
  text-align: center;
}
.customers-band-inner {
  max-width: 700px;
  margin: 0 auto;
}
.customers-band .section-label { color: var(--accent); }
.customers-band .section-title { color: var(--white); }
.customers-band p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ============================================================
   FLEET PAGE (fleet.html)
   ============================================================ */
.fleet-section {
  padding: 90px 40px;
  background: var(--white);
}
.fleet-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.fleet-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

.fleet-intro p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.9;
}

/* Table */
.fleet-table-wrap {
  overflow-x: auto;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  margin-bottom: 48px;
}

.fleet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.fleet-table thead {
  background: var(--navy);
  color: var(--white);
}

.fleet-table thead th {
  padding: 18px 24px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.fleet-table thead th:first-child {
  border-left: 3px solid var(--accent);
}

.fleet-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.fleet-table tbody tr:last-child { border-bottom: none; }
.fleet-table tbody tr:hover { background: #f0f4f9; }

.fleet-table tbody td {
  padding: 18px 24px;
  color: var(--text);
  white-space: nowrap;
}

.fleet-table tbody td.vessel-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
}

.fleet-table tbody td.vessel-name::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
}

/* TBN rows */
.fleet-table tbody tr.tbn-row {
  background: var(--off-white);
}
.fleet-table tbody tr.tbn-row td.vessel-name {
  color: var(--text-light);
}
.fleet-table tbody tr.tbn-row td.vessel-name::before {
  background: var(--accent);
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-active {
  background: #e8f4ed;
  color: #2a7a48;
}

.badge-pending {
  background: #fdf3e0;
  color: #9c6f1e;
}

.badge-owned {
  background: #e0f2fe;
  color: #0369a1;
}

/* Coating badge */
.coating {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}

/* TBN note */
.tbn-note {
  background: var(--off-white);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 48px;
}
.tbn-note p {
  font-size: 15px;
  color: var(--text-light);
}
.tbn-note strong { color: var(--navy); }

/* Specs strip */
.specs-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 48px;
  margin-bottom: 48px;
}
.spec-box {
  background: var(--white);
  padding: 36px 28px;
}
.spec-box-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}
.spec-box-val {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
}

/* ============================================================
   CONTACT PAGE (contact.html)
   ============================================================ */
.contact-section {
  padding: 90px 40px;
  background: var(--white);
}
.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.contact-inner > p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 600px;
}

/* ── Contact info ── */
.contact-info p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 40px;
}

.contact-company {
  margin-bottom: 32px;
  padding: 28px 28px;
  background: var(--off-white);
  border-left: 3px solid var(--navy);
  border-radius: 0 4px 4px 0;
  animation: slideUpFade 1.2s ease-out forwards;
  opacity: 0;
}

.contact-grid .contact-company:first-child { animation-delay: 0.1s; }
.contact-grid .contact-company:last-child { animation-delay: 0.25s; }

.contact-company-banner {
  max-width: 120px;
  margin-bottom: 16px;
  display: block;
}

.contact-company h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.contact-company {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-company:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-detail-row .label {
  font-weight: 700;
  color: var(--navy);
  min-width: 52px;
  flex-shrink: 0;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 2px;
}

.contact-detail-row a {
  color: var(--blue);
  transition: color 0.2s;
}
.contact-detail-row a:hover { color: var(--navy); }

/* ── Contact form ── */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: 4px;
  padding: 52px 48px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  animation: slideUpFade 1.2s ease-out 0.4s forwards;
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contact-form-wrap h2 {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form-wrap .form-sub {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,95,153,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select {
  appearance: none;
  cursor: pointer;
  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='%236b7c93' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 14px;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 14px;
}

/* ── Map section ── */
.map-section {
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.map-section iframe {
  display: block;
  border: none;
}

/* ── Map placeholder ── */
.map-placeholder {
  height: 320px;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.5);
}

.map-placeholder p {
  font-size: 14px;
  line-height: 1.7;
}

.map-placeholder strong {
  display: block;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .header-inner { padding: 0 24px; }
  .section { padding: 60px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .page-hero p { font-size: 15px; max-width: 100%; white-space: normal; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer { padding: 48px 24px 24px; }

  .main-nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px 24px 24px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .main-nav.open { display: flex; }
  .main-nav a { color: var(--navy); padding: 12px 0; }
  .main-nav a:hover { color: var(--blue); }
  .main-nav a.active { color: var(--blue); }
  .main-nav a::after { display: none; }
  .nav-toggle { display: flex; }

  /* Home responsive */
  .intro-strip-inner { grid-template-columns: 1fr 1fr; }
  .intro-strip-inner .intro-stat:last-child { grid-column: 1 / -1; }
  .about-teaser-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-teaser-img { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .intro-strip, .about-teaser, .services-teaser, .cta-band { padding-left: 24px; padding-right: 24px; }

  /* About responsive */
  .values-grid { grid-template-columns: 1fr; }
  .company-cards { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .about-main, .values-section, .company-strip, .staff-section { padding-left: 24px; padding-right: 24px; }

  /* Services responsive */
  .service-block { grid-template-columns: 1fr; gap: 40px; }
  .service-block.reverse { direction: ltr; }
  .cargo-header { grid-template-columns: 1fr; gap: 32px; }
  .cargo-grid { grid-template-columns: 1fr 1fr; }
  .services-main, .cargo-section, .customers-band { padding-left: 24px; padding-right: 24px; }

  /* Fleet responsive */
  .fleet-intro { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .specs-strip { grid-template-columns: 1fr 1fr; }
  .fleet-section { padding: 60px 24px; }

  /* Contact responsive */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-section { padding: 60px 24px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Mobile responsive */
  .cargo-grid { grid-template-columns: 1fr; }
  .specs-strip { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr; gap: 28px; }
  .staff-card { max-width: 280px; margin: 0 auto; }
}

/* ============================================================
   ENHANCED LOGO & BRANDING
   ============================================================ */
.logo-image {
  transition: transform 0.3s ease;
}

.logo:hover .logo-image {
  transform: scale(1.05);
}

/* ── TAGLINE ENHANCEMENT ── */
.hero h1 {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 100%;
  width: 90vw;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 64px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 44px;
  }
}

/* ============================================================
   CUSTOMERS SECTION
   ============================================================ */
.customers-section {
  padding: 90px 40px;
  background: var(--white);
  position: relative;
}

.customers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  max-width: 90vw;
  height: 1px;
  background: var(--border);
}

.customers-section-compact {
  padding: 60px 40px !important;
}

.customers-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.customers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  margin-top: 48px;
  align-items: center;
  text-align: left;
}

.customer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background: var(--off-white);
  border-radius: 8px;
  padding: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.customer-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.customer-logo img {
  max-width: 90%;
  max-height: 80px;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .customers-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .customers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .customers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .customer-logo {
    height: 80px;
  }
  .customers-section {
    padding: 60px 24px;
  }
}
