:root {
  --red: #e51b2b;
  --red-dark: #b90f1d;
  --black: #121212;
  --charcoal: #262626;
  --muted: #6b7280;
  --line: #e8e8e8;
  --soft: #f7f7f8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 18, 18, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 92px 0; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(14px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }
.brand img { width: 205px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: 14px; }
.nav-links a { color: var(--charcoal); transition: color .2s ease; }
.nav-links a:hover { color: var(--red); }
.nav-cta { background: var(--red); color: #fff !important; padding: 12px 18px; border-radius: 999px; box-shadow: 0 10px 25px rgba(229,27,43,.22); }
.menu-toggle { display: none; background: none; border: 0; font-size: 28px; }

.hero { position: relative; min-height: 720px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('assets/hero_ship_crop.jpg') center/cover no-repeat; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.55), rgba(0,0,0,.10)); }
.hero-content { position: relative; color: #fff; padding: 80px 0 60px; }
.eyebrow, .section-kicker { margin: 0 0 14px; color: var(--red); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 900; }
.eyebrow { color: #fff; opacity: .9; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 860px; font-size: clamp(44px, 7vw, 84px); line-height: .98; letter-spacing: -0.06em; margin-bottom: 24px; font-weight: 900; }
.hero-copy { max-width: 720px; font-size: 19px; color: rgba(255,255,255,.86); margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 24px; border-radius: 999px; font-weight: 900; border: 0; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 14px 30px rgba(229,27,43,.32); }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary { border: 1px solid rgba(255,255,255,.28); color: #fff; background: rgba(255,255,255,.08); }
.btn-light { background: #fff; color: var(--black); }
.full-width { width: 100%; }
.trust-row { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.trust-row span { border: 1px solid rgba(255,255,255,.20); background: rgba(255,255,255,.08); padding: 10px 14px; border-radius: 999px; font-weight: 800; font-size: 13px; }

.split-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: center; }
.align-start { align-items: flex-start; }
h2 { font-size: clamp(32px, 4.4vw, 56px); line-height: 1.02; letter-spacing: -0.05em; font-weight: 900; margin-bottom: 20px; }
.lead, .section-heading p, .intro-card p, .feature-copy p, .procurement p, .contact-info p { color: var(--muted); font-size: 17px; }
.intro-card { border-left: 6px solid var(--red); padding: 32px; background: var(--soft); border-radius: var(--radius); }
.intro-card p:last-child { margin-bottom: 0; }
.centered { text-align: center; margin-inline: auto; }
.section-heading { max-width: 780px; margin-bottom: 44px; }
.centered.section-heading { margin-left: auto; margin-right: auto; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card, .why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: 0 12px 35px rgba(0,0,0,.04); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover, .why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.icon { width: 48px; height: 48px; display: grid; place-items: center; background: #fff1f2; color: var(--red); border-radius: 16px; font-weight: 900; font-size: 24px; margin-bottom: 22px; }
.service-card h3, .why-card h3 { font-size: 21px; line-height: 1.15; margin-bottom: 12px; }
.service-card p, .why-card p { color: var(--muted); margin-bottom: 0; }

.feature-band { background: var(--black); color: #fff; padding: 92px 0; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.feature-image img, .procurement-grid img { border-radius: var(--radius); box-shadow: 0 30px 70px rgba(0,0,0,.26); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.feature-copy h2 { color: #fff; }
.feature-copy p { color: rgba(255,255,255,.75); }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; font-weight: 700; color: rgba(255,255,255,.9); }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: #fff; background: var(--red); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; }

.industrial-list { display: grid; gap: 14px; }
.industrial-list div { padding: 24px; background: var(--soft); border-radius: 18px; border: 1px solid var(--line); }
.industrial-list strong { display: block; font-size: 18px; margin-bottom: 6px; }
.industrial-list span { color: var(--muted); }
.text-link { display: inline-block; margin-top: 18px; color: var(--red); font-weight: 900; }
.product-section { background: var(--soft); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.product-grid span { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; font-weight: 800; }

.procurement-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 60px; align-items: center; }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.mini-stats div { background: var(--black); color: #fff; padding: 20px; border-radius: 18px; }
.mini-stats strong { display: block; font-size: 24px; line-height: 1; }
.mini-stats span { color: rgba(255,255,255,.7); font-size: 13px; }
.why-us { background: linear-gradient(180deg, #fff, #fafafa); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote-strip { background: var(--red); color: #fff; padding: 54px 0; }
.quote-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.quote-grid h2 { margin: 0; max-width: 760px; font-size: clamp(28px, 4vw, 44px); }
.light { color: rgba(255,255,255,.78); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: flex-start; }
.contact-lines { display: grid; gap: 12px; margin-top: 30px; }
.contact-lines a, .contact-lines span { padding: 16px 18px; border-radius: 16px; background: var(--soft); border: 1px solid var(--line); color: var(--charcoal); }
.quote-form { background: #fff; padding: 34px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; margin-bottom: 8px; color: var(--charcoal); }
input, select, textarea { width: 100%; border: 1px solid #d8d8d8; border-radius: 14px; padding: 14px 15px; font: inherit; outline: none; transition: border .2s ease, box-shadow .2s ease; }
input:focus, select:focus, textarea:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(229,27,43,.10); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 13px; text-align: center; }
.form-note.success { color: #0f7a3c; font-weight: 800; }
.footer { background: #101010; color: #fff; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.footer-logo { width: 190px; border-radius: 10px; margin-bottom: 18px; }
.footer p { color: rgba(255,255,255,.64); }
.footer-grid div:last-child { display: grid; gap: 8px; color: rgba(255,255,255,.74); }
.footer-grid strong { color: #fff; }
.footer-bottom { margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.10); display: flex; justify-content: space-between; color: rgba(255,255,255,.55); font-size: 14px; }

@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .nav-links { position: absolute; left: 20px; right: 20px; top: 78px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); padding: 18px; flex-direction: column; align-items: stretch; display: none; }
  .nav-links.open { display: flex; }
  .split-grid, .feature-grid, .procurement-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-grid, .why-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 650px; }
  .quote-grid { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1140px); }
  .section-pad { padding: 66px 0; }
  .brand img { width: 165px; }
  .hero { min-height: 710px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.62)); }
  .hero-copy { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .service-grid, .why-grid, .product-grid, .mini-stats, .two-col { grid-template-columns: 1fr; }
  .quote-form { padding: 22px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* Contact form enhancements */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-note.success {
  color: #116329;
  background: #e8f7ed;
  border: 1px solid #b9e5c5;
  padding: 12px 14px;
  border-radius: 12px;
}
.form-note.error {
  color: #9d1c1f;
  background: #fff0f0;
  border: 1px solid #f2b8b8;
  padding: 12px 14px;
  border-radius: 12px;
}
.simple-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #f6f7f9;
  padding: 24px;
}
.simple-card {
  width: min(640px, 100%);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  padding: 44px;
  text-align: center;
}
.simple-logo {
  max-width: 170px;
  height: auto;
  margin-bottom: 22px;
}
.simple-card h1 {
  margin-bottom: 12px;
}
.simple-card p {
  margin-bottom: 24px;
  color: #4a4f58;
}


/* Requested update: cleaner centred layout */
.hero-content,
.intro,
.services,
.feature-copy,
.packaging,
.product-section,
.procurement,
.why-us,
.quote-strip,
.contact-info,
.footer {
  text-align: center;
}

.hero-content,
.hero-copy,
h1,
.section-heading,
.lead,
.procurement-grid > div,
.contact-info p {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions,
.trust-row,
.quote-grid,
.footer-bottom {
  justify-content: center;
}

.split-grid,
.feature-grid,
.procurement-grid,
.contact-grid,
.footer-grid {
  justify-items: center;
  text-align: center;
}

.intro-card {
  border-left: 0;
  border-top: 6px solid var(--red);
  max-width: 760px;
}

.service-card,
.why-card,
.industrial-list div,
.product-grid span,
.contact-lines a,
.contact-lines span {
  text-align: center;
}

.icon {
  margin-left: auto;
  margin-right: auto;
}

.check-list {
  width: min(680px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.check-list li {
  text-align: left;
}

.feature-image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.procurement-grid img {
  aspect-ratio: 4 / 3;
}

.contact-lines {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.quote-form {
  width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.footer-logo {
  margin-left: auto;
  margin-right: auto;
}
