:root {
  --brand-red: #f01818;
  --brand-red-dark: #b90000;
  --ink: #0b0b0d;
  --graphite: #242424;
  --muted: #666a70;
  --line: #e5e5e5;
  --paper: #ffffff;
  --soft: #f7f7f7;
  --teal: #0b0b0d;
  --teal-dark: #0b0b0d;
  --gold: #f01818;
  --shadow: 0 24px 58px rgba(11, 11, 13, 0.18);
  --deep-red: #650000;
}



* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

:focus-visible {
  outline: 3px solid rgba(232, 59, 59, 0.9);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  padding: 10px 14px;
  color: #ffffff;
  background: #222222;
  border-radius: 4px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
.division-card,
.product-card,
.contact-card {
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

input,
select,
textarea,
button {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 8px 40px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 3px solid var(--ink);
  backdrop-filter: blur(16px);
}

.top-contact-strip {
  color: var(--paper);
  background: var(--ink);
  font-size: 13px;
}

.top-contact-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.top-contact-inner span {
  margin-right: auto;
  color: rgba(255, 255, 255, 0.72);
}

.top-contact-inner a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.top-contact-inner a:hover {
  color: var(--paper);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 156px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--paper);
  background: var(--brand-red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--ink);
  border: 0;
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--paper);
}

.nav-toggle:focus-visible {
  outline-color: #222222;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(118deg, #ffffff 0 58%, #111113 58% 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(240, 24, 24, 0.26), transparent 28%),
    repeating-linear-gradient(90deg, rgba(11, 11, 13, 0.06) 0 1px, transparent 1px 112px);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-vessel {
  position: absolute;
  right: 8%;
  bottom: 110px;
  width: 460px;
  height: 154px;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-top: 0;
  transform: skewX(-12deg);
}

.hero-vessel::before,
.hero-vessel::after {
  content: "";
  position: absolute;
  background: rgba(255, 23, 23, 0.92);
}

.hero-vessel::before {
  left: 46px;
  top: -78px;
  width: 240px;
  height: 78px;
}

.hero-vessel::after {
  right: -34px;
  bottom: -2px;
  width: 130px;
  height: 80px;
  clip-path: polygon(0 0, 100% 42%, 100% 100%, 0 100%);
}

.supply-mark {
  position: absolute;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 12px solid rgba(240, 24, 24, 0.82);
}

.supply-mark-one {
  right: 29%;
  top: 140px;
}

.supply-mark-two {
  right: 12%;
  top: 255px;
  border-color: rgba(255, 255, 255, 0.78);
}

.route-line {
  position: absolute;
  right: 7%;
  width: 560px;
  height: 2px;
  background: rgba(255, 255, 255, 0.28);
}

.route-line-one {
  top: 214px;
  transform: rotate(-14deg);
}

.route-line-two {
  top: 340px;
  transform: rotate(8deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: max(40px, calc((100% - 1120px) / 2));
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy,
.page-hero p:last-child {
  max-width: 690px;
  margin: 24px 0 0;
  font-size: 19px;
}

.hero-copy {
  color: var(--graphite);
}

.page-hero p:last-child {
  color: var(--graphite);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
}

.button-primary {
  color: var(--paper);
  background: var(--brand-red);
  box-shadow: 0 14px 28px rgba(255, 23, 23, 0.28);
}

.button-primary:hover {
  background: var(--brand-red-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(11, 11, 13, 0.2);
}

.button-secondary:hover {
  color: var(--brand-red-dark);
  border-color: var(--brand-red);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 11, 13, 0.16);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(11, 11, 13, 0.08);
}

.hero-links a:hover {
  color: var(--brand-red-dark);
  border-color: rgba(255, 23, 23, 0.3);
}

.intro-section,
.division-section,
.detail-section,
.contact-section,
.contact-support {
  padding: 86px 0;
}

.intro-grid,
.purpose-grid,
.strength-layout,
.support-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.purpose-grid h2,
.strength-layout h2,
.support-layout h2,
.detail-content h2,
.cta-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.16;
  letter-spacing: 0;
}

.intro-copy p,
.purpose-grid p,
.detail-content p,
.cta-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

.metrics-section {
  padding: 34px 0;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.metrics-grid article {
  min-height: 128px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-red);
  border-radius: 8px;
}

.metrics-grid strong {
  display: block;
  color: var(--brand-red-dark);
  font-size: 28px;
  line-height: 1;
}

.metrics-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.section-heading {
  max-width: 720px;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.division-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-red);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 18, 23, 0.06);
}

.division-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0 0 22px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.division-card:hover {
  border-color: rgba(255, 23, 23, 0.4);
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: var(--paper);
  background: var(--brand-red);
  border-radius: 8px;
  font-weight: 800;
}

.division-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

.division-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.division-card a {
  margin-top: auto;
  padding-top: 28px;
  color: var(--brand-red-dark);
  font-size: 14px;
  font-weight: 800;
}

.purpose-section {
  padding: 86px 0;
  background: var(--soft);
}

.purpose-grid article {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.purpose-grid p {
  margin-top: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--brand-red);
  border-radius: 50%;
}

.strength-section {
  padding: 86px 0;
}

.strength-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.strength-list span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  color: var(--graphite);
  background: var(--soft);
  border-left: 4px solid var(--brand-red);
  border-radius: 4px;
  font-weight: 700;
}

.cta-section {
  padding: 0 0 86px;
}

.cta-panel {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding: 38px;
  color: var(--paper);
  background:
    linear-gradient(90deg, var(--brand-red) 0 8px, transparent 8px),
    var(--ink);
  border-radius: 8px;
}

.cta-panel h2,
.cta-panel p {
  color: var(--paper);
}

.cta-panel p {
  max-width: 720px;
  margin-top: 14px;
  margin-bottom: 0;
  opacity: 0.86;
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  padding: 54px 0;
}

.footer-grid img {
  width: 184px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

.footer-grid p {
  max-width: 470px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 16px;
  letter-spacing: 0;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 40px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(118deg, #ffffff 0 62%, #111113 62% 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(240, 24, 24, 0.9) 58% 58.8%, transparent 58.8%),
    repeating-linear-gradient(90deg, rgba(11, 11, 13, 0.05) 0 1px, transparent 1px 112px);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 70px 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}

.detail-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
  padding: 20px;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-top: 4px solid var(--brand-red);
  border-radius: 8px;
}

.detail-sidebar span {
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-sidebar a {
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}

.detail-sidebar a:hover {
  color: var(--paper);
  background: var(--brand-red);
}

.detail-content {
  display: grid;
  gap: 56px;
}

.detail-content section {
  scroll-margin-top: 130px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.detail-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.category-banner {
  width: 100%;
  max-height: 360px;
  margin-top: 24px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  border-bottom: 4px solid var(--brand-red);
  box-shadow: 0 12px 30px rgba(16, 18, 23, 0.08);
}

.product-card {
  overflow: hidden;
  min-height: 190px;
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-red);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 18, 23, 0.06);
}

.product-card h3 {
  margin: 0;
  padding: 16px;
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0;
}

.product-image {
  position: relative;
  min-height: 128px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.18)),
    linear-gradient(135deg, #ffffff, #eeeeee);
}

.product-image::before,
.product-image::after {
  content: "";
  position: absolute;
}

.image-rice::before,
.image-flour::before,
.image-sugar::before,
.image-cement::before {
  left: 50%;
  bottom: 18px;
  width: 78px;
  height: 90px;
  background: #f8f1df;
  border: 4px solid #d9c898;
  border-radius: 10px 10px 18px 18px;
  transform: translateX(-50%);
  box-shadow: inset 0 -18px 0 rgba(181, 139, 42, 0.16);
}

.image-rice::after,
.image-flour::after,
.image-sugar::after,
.image-cement::after {
  left: 50%;
  top: 44px;
  width: 52px;
  height: 12px;
  background: var(--brand-red);
  border-radius: 4px;
  transform: translateX(-50%);
}

.image-flour::before {
  background: #fafafa;
  border-color: #d6dce3;
}

.image-sugar::before {
  background: #ffffff;
  border-color: #e7d8ca;
}

.image-oil::before {
  left: 50%;
  bottom: 18px;
  width: 54px;
  height: 92px;
  background: linear-gradient(#ffd15c 18%, #e4a711 18%);
  border: 4px solid #b87908;
  border-radius: 16px 16px 10px 10px;
  transform: translateX(-50%);
}

.image-oil::after {
  left: 50%;
  top: 18px;
  width: 28px;
  height: 20px;
  background: #f6f0de;
  border: 3px solid #b87908;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  transform: translateX(-50%);
}

.image-pulses::before,
.image-dryfood::before,
.image-canned::before,
.image-beverages::before,
.image-grocery::before {
  left: 50%;
  bottom: 22px;
  width: 94px;
  height: 58px;
  background:
    radial-gradient(circle at 20% 70%, #b7652c 0 7px, transparent 8px),
    radial-gradient(circle at 36% 54%, #d6a343 0 7px, transparent 8px),
    radial-gradient(circle at 52% 66%, #7f9b4e 0 7px, transparent 8px),
    radial-gradient(circle at 66% 48%, #c95542 0 7px, transparent 8px),
    radial-gradient(circle at 78% 68%, #e0b45b 0 7px, transparent 8px),
    #f7ead6;
  border: 4px solid #bd9461;
  border-radius: 0 0 46px 46px;
  transform: translateX(-50%);
}

.image-dryfood::before {
  background:
    linear-gradient(90deg, #d9a447 0 18%, #e9c36c 18% 36%, #b98a41 36% 54%, #dfba72 54% 72%, #c99648 72%),
    #f7ead6;
}

.image-canned::before {
  width: 70px;
  height: 86px;
  bottom: 18px;
  background: linear-gradient(#cfd8e3 0 18%, #f3f5f7 18% 42%, var(--brand-red) 42% 72%, #cfd8e3 72%);
  border: 4px solid #8593a2;
  border-radius: 12px;
}

.image-beverages::before {
  width: 64px;
  height: 92px;
  bottom: 16px;
  background: linear-gradient(#0b0b0d 0 18%, #ffffff 18% 44%, var(--brand-red) 44% 100%);
  border: 4px solid #0b0b0d;
  border-radius: 14px 14px 8px 8px;
}

.image-grocery::before {
  width: 96px;
  height: 74px;
  background:
    linear-gradient(90deg, transparent 0 30%, rgba(255, 255, 255, 0.48) 30% 36%, transparent 36%),
    #f5c45d;
  border: 4px solid #be852b;
  border-radius: 10px;
}

.image-steel-sheet::before,
.image-roofing::before,
.image-structural::before,
.image-pipes::before,
.image-hardware::before,
.image-construction::before {
  left: 50%;
  bottom: 26px;
  width: 118px;
  height: 48px;
  background: linear-gradient(135deg, #c7d0da, #eef2f5 45%, #9ba8b4);
  border: 4px solid #7b8794;
  border-radius: 6px;
  transform: translateX(-50%) skewX(-12deg);
}

.image-roofing::before {
  background:
    repeating-linear-gradient(90deg, #a9b4bf 0 10px, #e8edf1 10px 18px);
}

.image-structural::before {
  width: 126px;
  height: 20px;
  bottom: 54px;
  background: #8a97a5;
  box-shadow: 0 28px 0 #8a97a5, 42px 14px 0 #b8c1ca;
  transform: translateX(-50%);
}

.image-pipes::before {
  width: 128px;
  height: 28px;
  bottom: 54px;
  background:
    radial-gradient(circle at 12px 14px, transparent 0 8px, #83909e 9px 13px, transparent 14px),
    linear-gradient(90deg, #bcc6d0, #8592a0);
  border-radius: 18px;
  transform: translateX(-50%);
}

.image-cement::before {
  background: #ded7c7;
  border-color: #b8ad96;
}

.image-hardware::before {
  width: 96px;
  height: 70px;
  background:
    radial-gradient(circle at 70% 36%, transparent 0 10px, #8c97a3 11px 15px, transparent 16px),
    linear-gradient(45deg, transparent 0 45%, #8c97a3 45% 58%, transparent 58%),
    #dce2e8;
  transform: translateX(-50%) rotate(-8deg);
}

.image-construction::before {
  background:
    linear-gradient(90deg, #b98a41 0 33%, #d7a852 33% 66%, #8a97a5 66%),
    #d7a852;
  border-color: #8d6f39;
}

.image-domestic-cargo::before,
.image-island-delivery::before,
.image-material-cargo::before,
.image-bulk-goods::before,
.image-distribution::before,
.image-handling::before {
  left: 50%;
  bottom: 28px;
  width: 128px;
  height: 54px;
  background: var(--brand-red);
  border-radius: 8px 8px 22px 22px;
  transform: translateX(-50%);
  box-shadow: inset -22px 0 0 rgba(0, 0, 0, 0.12);
}

.image-domestic-cargo::after,
.image-island-delivery::after,
.image-material-cargo::after,
.image-bulk-goods::after,
.image-distribution::after,
.image-handling::after {
  left: 50%;
  top: 30px;
  width: 96px;
  height: 38px;
  background:
    linear-gradient(90deg, var(--brand-red) 0 31%, #0b0b0d 31% 64%, #f3f5f7 64%);
  border: 4px solid rgba(16, 18, 23, 0.18);
  border-radius: 6px;
  transform: translateX(-50%);
}

.image-island-delivery::after {
  background: linear-gradient(90deg, #0b0b0d 0 48%, #f3f5f7 48%);
}

.image-material-cargo::after {
  background: repeating-linear-gradient(90deg, #8a97a5 0 16px, #dce2e8 16px 28px);
}

.image-bulk-goods::after {
  background: linear-gradient(90deg, var(--brand-red) 0 50%, #0b0b0d 50%);
}

.image-distribution::after {
  background: linear-gradient(90deg, var(--brand-red) 0 33%, #0b0b0d 33% 66%, #f3f5f7 66%);
}

.image-handling::after {
  background: linear-gradient(90deg, #dce2e8 0 50%, #8a97a5 50%);
}

.two-column {
  grid-template-columns: repeat(2, 1fr);
}

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

.contact-card {
  min-height: 180px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 18, 23, 0.07);
}

.contact-label {
  display: block;
  margin-bottom: 18px;
  color: var(--brand-red-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card a,
.contact-card p {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.quote-section {
  padding: 0 0 86px;
  background: var(--paper);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 44px;
  align-items: start;
  padding: 38px;
  background:
    linear-gradient(90deg, var(--brand-red) 0 7px, transparent 7px),
    var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(11, 11, 13, 0.07);
}

.quote-layout h2 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.16;
}

.quote-layout p {
  margin: 16px 0 0;
  color: var(--muted);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  outline: none;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(240, 24, 24, 0.1);
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.contact-support {
  background: var(--soft);
}

/* Premium red-led template refresh */
.site-header {
  border-bottom: 0;
  box-shadow: 0 16px 34px rgba(11, 11, 13, 0.08);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red) 0 26%, var(--ink) 26% 100%);
}

.hero {
  min-height: 690px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.76) 0%, rgba(8, 8, 10, 0.58) 45%, rgba(8, 8, 10, 0.12) 100%),
    url("assets/home-cargo-boat.jpg") center / cover;
}

.hero::before {
  background:
    linear-gradient(90deg, var(--brand-red) 0 9px, transparent 9px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 40%);
}

.hero::after {
  content: none;
}

.hero-media {
  display: none;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  color: var(--paper);
  text-shadow: none;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
}

.hero .eyebrow {
  color: #ffffff;
}

.button-primary {
  background: var(--brand-red);
}

.button-whatsapp {
  color: var(--paper);
  background: #128c4a;
  box-shadow: 0 14px 28px rgba(18, 140, 74, 0.24);
}

.button-whatsapp:hover {
  background: #0f743e;
}

.button-secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-secondary:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.hero-links a {
  color: var(--paper);
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.hero-links a:hover {
  color: var(--paper);
  background: var(--brand-red);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0;
  width: fit-content;
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 4px solid var(--brand-red);
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof span:last-child {
  border-right: 0;
}

.intro-section {
  background:
    linear-gradient(90deg, rgba(240, 24, 24, 0.08) 0 9px, transparent 9px),
    var(--paper);
}

.metrics-section,
.purpose-section,
.contact-support {
  background: #f4f4f4;
}

.why-section {
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(240, 24, 24, 0.08) 0 9px, transparent 9px),
    #ffffff;
}

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

.why-grid article {
  min-height: 240px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--brand-red);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(11, 11, 13, 0.07);
}

.why-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 800;
}

.why-grid h3 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.industries-section {
  padding: 86px 0;
  background: var(--paper);
}

.industries-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: start;
}

.industries-layout h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}

.industries-layout p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.industries-grid span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  color: var(--ink);
  background: #f6f6f4;
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand-red);
  border-radius: 6px;
  font-weight: 850;
  line-height: 1.25;
  box-shadow: 0 16px 34px rgba(11, 11, 13, 0.06);
}

.process-section {
  padding: 86px 0;
  color: var(--paper);
  background:
    linear-gradient(90deg, var(--brand-red) 0 9px, transparent 9px),
    var(--ink);
}

.process-section .section-kicker,
.process-section .section-heading h2 {
  color: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.process-grid article {
  min-height: 230px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 5px solid var(--brand-red);
  border-radius: 8px;
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--paper);
  background: var(--brand-red);
  border-radius: 8px;
  font-weight: 800;
}

.process-grid h3 {
  margin: 22px 0 10px;
  color: var(--paper);
  font-size: 20px;
  line-height: 1.25;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.division-section {
  background:
    linear-gradient(90deg, rgba(240, 24, 24, 0.08) 0 9px, transparent 9px),
    #ffffff;
  color: var(--ink);
}

.division-section .section-kicker,
.division-section .section-heading h2 {
  color: var(--ink);
}

.division-section .section-kicker {
  color: var(--brand-red);
}

.division-grid {
  align-items: stretch;
}

.division-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--brand-red);
  box-shadow: 0 28px 70px rgba(11, 11, 13, 0.1);
}

.division-photo {
  width: 100%;
  aspect-ratio: 16 / 11;
  margin: 0;
  border: 0;
  border-radius: 0;
  opacity: 0.9;
}

.division-card .card-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  margin: 0;
  background: var(--brand-red);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

.division-card h3,
.division-card p,
.division-card a {
  padding-left: 26px;
  padding-right: 26px;
}

.division-card h3 {
  margin-top: 24px;
  color: var(--ink);
}

.division-card p {
  color: var(--muted);
}

.division-card a {
  display: inline-flex;
  color: var(--brand-red-dark);
  padding-bottom: 28px;
}

.division-card a:hover {
  color: var(--ink);
}

.page-hero {
  --page-image: url("assets/home-cargo-boat.jpg");
  min-height: 470px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.76) 0%, rgba(8, 8, 10, 0.54) 48%, rgba(8, 8, 10, 0.12) 100%),
    var(--page-image) center / cover;
  border-bottom: 0;
}

.food-hero {
  --page-image: url("assets/food-supply-division-header.jpg");
}

.construction-hero {
  --page-image: url("assets/construction-materials-division-header.jpg");
}

.cargo-hero {
  --page-image: url("assets/cargo-loading-exportza.jpg");
}

.contact-hero {
  --page-image: url("assets/home-cargo-boat.jpg");
}

.page-hero::before {
  background:
    linear-gradient(90deg, var(--brand-red) 0 9px, transparent 9px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 40%);
}

.page-hero h1 {
  color: var(--paper);
  text-shadow: none;
}

.page-hero p:last-child {
  color: rgba(255, 255, 255, 0.86);
}

.page-hero .eyebrow {
  color: #ffffff;
}

.detail-section {
  background: #f6f6f4;
}

.detail-sidebar {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-red);
  box-shadow: 0 18px 42px rgba(11, 11, 13, 0.08);
}

.detail-sidebar span {
  color: var(--brand-red);
}

.detail-sidebar a {
  color: var(--ink);
  background: var(--soft);
  border: 1px solid transparent;
}

.detail-sidebar a:hover {
  color: var(--brand-red-dark);
  background: #fff3f3;
  border-color: rgba(240, 24, 24, 0.18);
}

.category-banner {
  max-height: 390px;
  border: 0;
  border-bottom: 6px solid var(--brand-red);
  box-shadow: 0 26px 56px rgba(11, 11, 13, 0.16);
}

.product-card {
  position: relative;
  min-height: 92px;
  border: 0;
  border-top: 4px solid var(--brand-red);
  box-shadow: 0 18px 42px rgba(11, 11, 13, 0.1);
}

.product-card .product-image {
  display: none;
}

.product-card h3 {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 22px 20px 6px 66px;
}

.product-card h3::before {
  content: "E";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: var(--brand-red);
  border-radius: 6px;
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(240, 24, 24, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.product-card p {
  margin: 0;
  padding: 0 20px 22px 66px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dark-button {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.dark-button:hover {
  color: var(--paper);
  border-color: var(--paper);
}

.strength-list span,
.metrics-grid article,
.purpose-grid article,
.contact-card {
  box-shadow: 0 18px 42px rgba(11, 11, 13, 0.07);
}

.site-footer {
  background:
    linear-gradient(90deg, var(--brand-red) 0 9px, transparent 9px),
    var(--ink);
}

.footer-tagline {
  color: var(--paper);
  font-weight: 800;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--paper);
  background: #128c4a;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(11, 11, 13, 0.22);
  font-size: 14px;
  font-weight: 800;
}

.floating-whatsapp:hover {
  background: #0f743e;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 24px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 620px;
    background:
      linear-gradient(90deg, rgba(8, 8, 10, 0.78), rgba(8, 8, 10, 0.54), rgba(8, 8, 10, 0.16)),
      url("assets/home-cargo-boat.jpg") 52% center / cover;
  }

  .hero::before {
    background:
      linear-gradient(90deg, var(--brand-red) 0 6px, transparent 6px),
      linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 40%);
  }

  .page-hero {
    background:
      linear-gradient(90deg, rgba(8, 8, 10, 0.78), rgba(8, 8, 10, 0.5), rgba(8, 8, 10, 0.16)),
      var(--page-image) center / cover;
  }

  .page-hero::before {
    background:
      linear-gradient(90deg, var(--brand-red) 0 6px, transparent 6px),
      linear-gradient(180deg, rgba(0, 0, 0, 0.14), transparent 40%);
  }

  .hero-content {
    margin-left: auto;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero-copy,
  .page-hero p:last-child {
    font-size: 17px;
  }

  .hero-proof {
    grid-template-columns: repeat(4, auto);
    width: min(100%, 520px);
  }

  .hero-proof span:nth-child(2) {
    border-right: 1px solid rgba(11, 11, 13, 0.12);
  }

  .hero-proof span:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .hero-vessel {
    right: -120px;
    opacity: 0.55;
  }

  .hero-media {
    display: none;
  }

  .intro-grid,
  .purpose-grid,
  .strength-layout,
  .support-layout,
  .footer-grid,
  .quote-layout,
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .metrics-grid,
  .division-grid,
  .why-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-sidebar {
    position: static;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 78px;
    padding: 12px 14px;
  }

  .top-contact-inner {
    min-height: 42px;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px 14px;
    padding: 0;
  }

  .top-contact-inner span {
    display: none;
    margin-right: 0;
  }

  .top-contact-inner a[href^="mailto"] {
    display: none;
  }

  .brand img {
    width: 148px;
    height: 52px;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding: 54px 0 48px;
    background:
      linear-gradient(90deg, rgba(8, 8, 10, 0.78), rgba(8, 8, 10, 0.58), rgba(8, 8, 10, 0.26)),
      url("assets/home-cargo-boat.jpg") 50% 42% / cover;
  }

  .hero::before {
    background:
      linear-gradient(90deg, var(--brand-red) 0 6px, transparent 6px),
      linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(240, 24, 24, 0.12));
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    margin: 0 auto;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .hero-actions,
  .hero-links {
    gap: 10px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions .button-secondary,
  .hero-links {
    display: none;
  }

  .hero-proof {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    border-right: 0;
    border-bottom: 1px solid rgba(11, 11, 13, 0.12);
  }

  .hero-proof span:last-child {
    border-bottom: 0;
  }

  .hero-actions,
  .cta-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .intro-section,
  .division-section,
  .why-section,
  .process-section,
  .purpose-section,
  .strength-section,
  .detail-section,
  .contact-section,
  .contact-support {
    padding: 62px 0;
  }

  .intro-grid h2,
  .section-heading h2,
  .purpose-grid h2,
  .strength-layout h2,
  .support-layout h2,
  .detail-content h2,
  .cta-panel h2 {
    font-size: 28px;
  }

  .metrics-grid,
  .division-grid,
  .why-grid,
  .process-grid,
  .strength-list,
  .product-grid,
  .quote-form,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .division-card {
    min-height: 320px;
  }

  .cta-panel {
    padding: 26px;
  }

  .quote-layout {
    padding: 26px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .section-actions {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    padding: 18px 20px;
  }
}

/* Biztrox-inspired preview theme */
:root {
  --biz-red: #e83b3b;
  --biz-red-dark: #c62626;
  --biz-charcoal: #303033;
  --biz-ink: #222222;
  --biz-muted: #777777;
  --biz-soft: #f5f5f5;
  --biz-line: #e8e8e8;
  --biz-shadow: 0 18px 42px rgba(28, 28, 31, 0.12);
}

body {
  color: var(--biz-ink);
  background: #ffffff;
  font-family: "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
}

.container {
  width: min(1110px, calc(100% - 40px));
}

.top-contact-strip {
  min-height: 52px;
  background: var(--biz-charcoal);
  font-size: 14px;
}

.top-contact-inner {
  min-height: 52px;
  padding-left: 240px;
  gap: 30px;
}

.top-contact-inner a,
.top-contact-inner span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  white-space: nowrap;
}

.top-contact-inner a:hover,
.top-contact-inner a[href^="tel"] {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  min-height: 106px;
  padding: 0 max(40px, calc((100vw - 1110px) / 2));
  background: #ffffff;
  border: 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.site-header::after {
  content: none;
}

.brand {
  position: absolute;
  left: max(40px, calc((100vw - 1110px) / 2));
  top: -52px;
  z-index: 3;
  width: 220px;
  height: 168px;
  justify-content: center;
  padding: 26px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.brand img {
  width: 150px;
  height: 100px;
  object-position: center;
}

.site-nav {
  width: 100%;
  justify-content: flex-end;
  gap: 6px;
  padding-left: 240px;
}

.site-nav a {
  min-height: 106px;
  padding: 0 13px;
  color: #222222;
  border-radius: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--biz-red);
  background: transparent;
}

.hero {
  min-height: 640px;
  color: var(--biz-ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.66) 48%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(18, 18, 20, 0.2), rgba(18, 18, 20, 0.32)),
    url("assets/home-hero-maldives-port.jpg") center 58% / cover;
}

.hero::before {
  background: rgba(255, 255, 255, 0.18);
}

.hero-content {
  max-width: 820px;
  margin-left: max(40px, calc((100% - 1110px) / 2));
  padding-top: 34px;
}

.eyebrow,
.section-kicker {
  color: var(--biz-red);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #222222;
  font-weight: 800;
}

.hero h1,
.page-hero h1 {
  color: #222222;
  max-width: 760px;
  font-size: 60px;
  line-height: 1.08;
  font-weight: 800;
}

.hero-copy,
.page-hero p:last-child {
  color: #444444;
  font-size: 16px;
  line-height: 1.85;
}

.button {
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.button-primary {
  color: #ffffff;
  background: var(--biz-red);
  border: 2px solid var(--biz-red);
  box-shadow: none;
}

.button-primary:hover {
  background: var(--biz-red-dark);
  border-color: var(--biz-red-dark);
}

.button-secondary,
.dark-button {
  color: #222222;
  background: transparent;
  border: 2px solid #222222;
}

.button-secondary:hover,
.dark-button:hover {
  color: #ffffff;
  background: #222222;
  border-color: #222222;
}

.button-whatsapp {
  color: #1f6f48;
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid rgba(31, 111, 72, 0.32);
  box-shadow: none;
}

.button-whatsapp:hover {
  color: #ffffff;
  background: #1f6f48;
  border-color: #1f6f48;
}

.hero-links a {
  min-height: 36px;
  color: #222222;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(34, 34, 34, 0.12);
  border-radius: 999px;
  box-shadow: none;
}

.hero-links a:hover {
  color: #ffffff;
  background: var(--biz-red);
}

.hero-proof {
  border: 0;
  border-left: 4px solid var(--biz-red);
  background: #ffffff;
  box-shadow: var(--biz-shadow);
}

.hero-proof span {
  color: #333333;
  border-right: 1px solid var(--biz-line);
}

.intro-section,
.division-section,
.why-section,
.purpose-section,
.strength-section,
.detail-section,
.contact-section,
.contact-support,
.process-section {
  padding: 92px 0;
}

.intro-section,
.division-section,
.why-section,
.detail-section,
.contact-support,
.metrics-section,
.purpose-section {
  background: var(--biz-soft);
}

.intro-section {
  background: #ffffff;
}

.intro-grid h2,
.section-heading h2,
.purpose-grid h2,
.strength-layout h2,
.support-layout h2,
.detail-content h2,
.cta-panel h2,
.quote-layout h2 {
  color: #222222;
  font-size: 40px;
  line-height: 1.18;
  font-weight: 800;
}

.intro-copy p,
.purpose-grid p,
.detail-content p,
.cta-panel p,
.quote-layout p {
  color: var(--biz-muted);
  line-height: 1.8;
}

.metrics-section {
  padding: 48px 0;
  border: 0;
}

.metrics-grid article,
.why-grid article,
.process-grid article,
.purpose-grid article,
.contact-card,
.quote-layout,
.detail-sidebar {
  background: #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: var(--biz-shadow);
}

.metrics-grid article {
  border-bottom: 4px solid var(--biz-red);
}

.metrics-grid strong {
  color: var(--biz-red);
}

.division-card {
  border: 0;
  border-radius: 0;
  box-shadow: var(--biz-shadow);
}

.division-card:hover {
  box-shadow: 0 26px 60px rgba(28, 28, 31, 0.18);
  transform: translateY(-4px);
}

.division-photo {
  opacity: 1;
}

.division-card .card-icon,
.why-grid span,
.process-grid span,
.product-card h3::before {
  border-radius: 50%;
  background: var(--biz-red);
}

.division-card h3,
.why-grid h3,
.process-grid h3 {
  color: #222222;
}

.division-card a {
  color: var(--biz-red);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.division-card a::after {
  content: ">";
  margin-left: 6px;
}

.process-section {
  background:
    linear-gradient(rgba(34, 34, 34, 0.86), rgba(34, 34, 34, 0.86)),
    url("assets/cargo-loading-exportza.jpg") center / cover;
}

.process-section .section-kicker,
.process-section .section-heading h2 {
  color: #ffffff;
}

.process-grid article {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.process-grid h3 {
  color: #ffffff;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  min-height: 420px;
  color: #222222;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.74) 48%, rgba(255, 255, 255, 0.2) 100%),
    var(--page-image) center / cover;
}

.page-hero::before {
  background: rgba(255, 255, 255, 0.1);
}

.page-hero h1 {
  color: #222222;
}

.page-hero .eyebrow,
.page-hero p:last-child {
  color: #222222;
}

.detail-sidebar {
  border-top: 4px solid var(--biz-red);
}

.detail-sidebar span,
.contact-label {
  color: var(--biz-red);
  letter-spacing: 0.12em;
}

.detail-sidebar a {
  background: var(--biz-soft);
  border-radius: 0;
}

.product-card {
  border: 0;
  border-radius: 0;
  box-shadow: var(--biz-shadow);
}

.quote-layout {
  background: #ffffff;
  border-left: 5px solid var(--biz-red);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  border-radius: 0;
  border-color: var(--biz-line);
}

.cta-section {
  padding: 0 0 92px;
  background: #ffffff;
}

.cta-panel {
  border-radius: 0;
  background:
    linear-gradient(rgba(34, 34, 34, 0.88), rgba(34, 34, 34, 0.88)),
    url("assets/home-construction-supply.jpg") center / cover;
  box-shadow: var(--biz-shadow);
}

.cta-panel h2,
.cta-panel p,
.cta-panel .section-kicker {
  color: #ffffff;
}

.site-footer {
  background: #252528;
}

.footer-grid {
  padding: 68px 0;
}

.footer-grid img {
  width: 160px;
  height: 72px;
  padding: 10px;
  background: #ffffff;
  filter: none;
}

.footer-bottom {
  background: #202022;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-whatsapp {
  color: #ffffff;
  background: #2f8f5d;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(47, 143, 93, 0.22);
}

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

.detail-sidebar {
  gap: 12px;
  padding: 24px;
}

.detail-sidebar a {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
}

.detail-content section {
  padding-bottom: 48px;
}

.product-card {
  display: grid;
  align-content: start;
  min-height: 116px;
}

.product-card h3::before {
  top: 22px;
  transform: none;
}

.product-card:hover,
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(28, 28, 31, 0.14);
}

.product-card h3 {
  padding-top: 18px;
}

.product-card p {
  padding-bottom: 18px;
}

.product-note {
  max-width: 820px;
  margin: 18px 0 0;
  padding: 18px 20px;
  color: #4e4e52;
  background: #ffffff;
  border-left: 4px solid var(--biz-red);
  box-shadow: 0 14px 34px rgba(28, 28, 31, 0.08);
}

.spec-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0 20px 20px 66px;
  list-style: none;
}

.spec-list li {
  position: relative;
  color: #6f6f73;
  font-size: 13px;
  line-height: 1.45;
}

.spec-list li::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 8px;
  width: 6px;
  height: 6px;
  background: rgba(232, 59, 59, 0.82);
  border-radius: 50%;
}

.contact-card {
  display: grid;
  align-content: center;
}

.quote-form input,
.quote-form select {
  min-height: 52px;
}

.site-footer {
  padding-left: 9px;
}

@media (max-width: 980px) {
  .top-contact-inner {
    padding-left: 0;
  }

  .site-header {
    min-height: 86px;
    padding: 0 24px;
  }

  .brand {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    box-shadow: none;
  }

  .brand img {
    width: 156px;
    height: 58px;
    object-position: left center;
  }

  .site-nav {
    padding-left: 0;
  }

  .site-nav a {
    min-height: 48px;
  }

  .nav-toggle {
    border-radius: 50%;
    background: var(--biz-red);
  }

  .hero-content {
    margin-left: auto;
  }

  .page-hero-content {
    padding: 62px 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1110px);
  }

  .top-contact-inner {
    min-height: 44px;
    font-size: 13px;
  }

  .site-header {
    min-height: 78px;
    padding: 12px 14px;
  }

  .brand img {
    width: 118px;
    height: 48px;
  }

  .hero {
    min-height: auto;
    padding: 62px 0 54px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.72) 64%, rgba(255, 255, 255, 0.28) 100%),
      linear-gradient(180deg, rgba(18, 18, 20, 0.2), rgba(18, 18, 20, 0.3)),
      url("assets/home-hero-maldives-port.jpg") 44% center / cover;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .intro-grid h2,
  .section-heading h2,
  .purpose-grid h2,
  .strength-layout h2,
  .support-layout h2,
  .detail-content h2,
  .cta-panel h2,
  .quote-layout h2 {
    font-size: 29px;
  }

  .page-hero {
    min-height: 390px;
  }

  .page-hero-content {
    padding: 48px 0;
  }

  .page-hero p:last-child {
    max-width: 340px;
    margin-top: 22px;
    line-height: 1.72;
  }

  .button {
    min-height: 54px;
    padding: 0 20px;
  }

  .detail-section {
    padding-top: 34px;
  }

  .detail-layout,
  .detail-content {
    gap: 34px;
  }

  .detail-sidebar {
    gap: 8px;
    padding: 18px;
  }

  .detail-sidebar span,
  .section-kicker,
  .contact-label {
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .detail-sidebar a {
    min-height: 46px;
    padding: 10px 14px;
  }

  .detail-content section {
    padding-bottom: 38px;
  }

  .product-card {
    min-height: 98px;
  }

  .product-card h3 {
    padding: 18px 18px 5px 62px;
  }

  .product-card p {
    padding: 0 18px 8px 62px;
  }

  .product-note {
    margin-top: 16px;
    padding: 16px;
    font-size: 14px;
    line-height: 1.65;
  }

  .spec-list {
    padding: 0 18px 18px 62px;
  }

  .section-actions {
    margin-top: 22px;
  }

  .contact-card {
    min-height: 140px;
  }

  .quote-section {
    padding-bottom: 62px;
  }

  .quote-layout {
    border-left: 0;
    border-top: 5px solid var(--biz-red);
  }

  .quote-form label {
    gap: 7px;
  }

  .footer-grid {
    padding: 54px 0;
  }

  .footer-grid img {
    width: 138px;
    height: 64px;
  }

  .floating-whatsapp {
    min-height: 40px;
    padding: 0 13px;
    box-shadow: 0 12px 28px rgba(11, 11, 13, 0.18);
    font-size: 12px;
    opacity: 0.94;
  }

  .floating-whatsapp:hover {
    opacity: 1;
  }
}

/* Shop catalogue additions */
.exportza-hero,
.hero.exportza-hero {
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.88) 0%, rgba(8, 8, 10, 0.68) 48%, rgba(8, 8, 10, 0.18) 100%),
    url("assets/home-hero-maldives-port.jpg") center / cover;
}

.exportza-hero h1,
.exportza-hero .eyebrow,
.exportza-hero .hero-copy {
  color: var(--paper);
}

.exportza-hero .button-secondary {
  color: var(--paper);
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.46);
}

.exportza-hero .button-secondary:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.shop-nav-link {
  box-shadow: inset 0 0 0 1px rgba(240, 24, 24, 0.24);
}

.page-hero.shop-hero {
  --page-image: url("assets/catalogue-import-ship.jpeg");
  min-height: 520px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.82), rgba(8, 8, 10, 0.58), rgba(8, 8, 10, 0.26)),
    url("assets/catalogue-import-ship.jpeg") center / cover;
}

.shop-hero h1,
.shop-hero .eyebrow,
.shop-hero .page-hero-content p {
  color: var(--paper);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.18);
}

.shop-hero .button-secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.shop-hero .button-secondary:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.shop-hero .hero-actions {
  margin-top: 28px;
}

.catalogue-section {
  padding: 34px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.catalogue-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.catalogue-summary h2 {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.08;
}

.catalogue-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.catalogue-toolbar a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
}

.catalogue-toolbar a:hover {
  color: var(--paper);
  background: var(--brand-red);
  border-color: var(--brand-red);
}

.shop-detail {
  background: var(--paper);
}

.shop-detail.alt-section {
  background:
    linear-gradient(90deg, rgba(240, 24, 24, 0.07) 0 9px, transparent 9px),
    #f6f6f4;
}

.catalogue-custom-section {
  padding: 0 0 86px;
  background: #f6f6f4;
}

.partner-section {
  padding: 86px 0;
  background: var(--paper);
}

.partner-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: stretch;
  padding: 40px;
  background:
    linear-gradient(90deg, rgba(240, 24, 24, 0.08) 0 9px, transparent 9px),
    #f6f6f4;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.partner-panel h2,
.supplier-callout h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.partner-panel p,
.supplier-callout p {
  margin: 18px 0 0;
  color: var(--muted);
}

.partner-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.partner-note p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.supplier-callout-section {
  padding: 0 0 86px;
  background: #f6f6f4;
}

.supplier-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.supplier-callout h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.catalogue-intro {
  max-width: 790px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.shop-product-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--brand-red);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(11, 11, 13, 0.09);
}

.catalogue-visual {
  position: relative;
  min-height: 142px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.18)),
    linear-gradient(135deg, #f6f6f4, #deded8);
  border-bottom: 1px solid var(--line);
}

.catalogue-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  background: #f6f6f4;
  border-bottom: 1px solid var(--line);
}

.catalogue-photo-lentils {
  object-position: 68% center;
}

.catalogue-photo-flour {
  object-fit: contain;
  object-position: center;
  padding: 8px;
  background: #f4f1ea;
}

.catalogue-visual::before,
.catalogue-visual::after {
  content: "";
  position: absolute;
}

.visual-cement::before,
.visual-rice::before,
.visual-flour::before,
.visual-sugar::before {
  left: 50%;
  bottom: 22px;
  width: 88px;
  height: 92px;
  background: #f8f1df;
  border: 4px solid #d5c285;
  border-radius: 10px 10px 20px 20px;
  transform: translateX(-50%);
  box-shadow: inset 0 -18px 0 rgba(181, 139, 42, 0.16);
}

.visual-cement::after,
.visual-rice::after,
.visual-flour::after,
.visual-sugar::after {
  left: 50%;
  top: 50px;
  width: 56px;
  height: 14px;
  background: var(--brand-red);
  border-radius: 4px;
  transform: translateX(-50%);
}

.visual-cement::before {
  background: #ece6d8;
  border-color: #aaa38e;
}

.visual-flour::before {
  background: #ffffff;
  border-color: #d6dce3;
}

.visual-sugar::before {
  background: #ffffff;
  border-color: #e7d8ca;
}

.visual-steel::before {
  left: 50%;
  top: 36px;
  width: 156px;
  height: 16px;
  background: #777f89;
  border-radius: 999px;
  transform: translateX(-50%) rotate(-8deg);
  box-shadow: 0 24px 0 #5d6670, 0 48px 0 #8b939c;
}

.visual-pipe::before {
  left: 50%;
  top: 28px;
  width: 138px;
  height: 34px;
  border: 10px solid #c5ccd4;
  border-radius: 999px;
  transform: translateX(-50%) rotate(-10deg);
  box-shadow: 0 48px 0 -1px #e7e9ed;
}

.visual-roof::before {
  left: 50%;
  bottom: 34px;
  width: 160px;
  height: 74px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0 10px, transparent 10px 22px),
    #aeb7bd;
  border: 4px solid #808a91;
  transform: translateX(-50%) skewX(-12deg);
}

.visual-tile::before {
  left: 50%;
  top: 28px;
  width: 128px;
  height: 88px;
  background:
    linear-gradient(90deg, transparent 31%, #c9c9c9 31% 34%, transparent 34% 65%, #c9c9c9 65% 68%, transparent 68%),
    linear-gradient(0deg, transparent 47%, #c9c9c9 47% 51%, transparent 51%),
    #f9f9f9;
  border: 4px solid #cfcfcf;
  transform: translateX(-50%) rotate(-2deg);
}

.visual-paint::before {
  left: 50%;
  bottom: 26px;
  width: 74px;
  height: 78px;
  background: linear-gradient(#ffffff 0 36%, var(--brand-red) 36%);
  border: 4px solid #3a3a3d;
  border-radius: 8px;
  transform: translateX(-50%);
}

.visual-lentils::before,
.visual-canned::before {
  left: 50%;
  bottom: 26px;
  width: 118px;
  height: 62px;
  background:
    radial-gradient(circle at 18% 68%, #b7652c 0 7px, transparent 8px),
    radial-gradient(circle at 36% 52%, #d6a343 0 7px, transparent 8px),
    radial-gradient(circle at 54% 66%, #7f9b4e 0 7px, transparent 8px),
    radial-gradient(circle at 72% 50%, #c95542 0 7px, transparent 8px),
    #f7ead6;
  border: 4px solid #bd9461;
  border-radius: 0 0 54px 54px;
  transform: translateX(-50%);
}

.visual-oil::before {
  left: 50%;
  bottom: 24px;
  width: 58px;
  height: 92px;
  background: linear-gradient(#ffd15c 18%, #e4a711 18%);
  border: 4px solid #b87908;
  border-radius: 16px 16px 10px 10px;
  transform: translateX(-50%);
}

.visual-oil::after {
  left: 50%;
  top: 18px;
  width: 28px;
  height: 20px;
  background: #f6f0de;
  border: 3px solid #b87908;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  transform: translateX(-50%);
}

.visual-canned::before {
  width: 78px;
  height: 82px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent 48%),
    linear-gradient(var(--brand-red) 0 26%, #f4f4f4 26% 74%, var(--brand-red) 74%);
  border-color: #8b8b8b;
  border-radius: 12px;
}

.product-copy {
  padding: 20px 22px 0;
}

.price-note {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--brand-red);
  background: rgba(240, 24, 24, 0.08);
  border: 1px solid rgba(240, 24, 24, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-product-card h3 {
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
}

.product-copy .price-note + h3 {
  margin-top: 14px;
}

.shop-product-card p {
  margin: 12px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
}

.product-note-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 24px;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  list-style: none;
}

.product-note-list li {
  position: relative;
  padding-left: 16px;
}

.product-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--brand-red);
  border-radius: 50%;
}

.shop-product-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  margin: 20px 22px 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.shop-product-card dt {
  color: var(--ink);
  font-weight: 800;
}

.shop-product-card dd {
  margin: 0;
}

.shop-product-card .button {
  width: calc(100% - 44px);
  margin: auto 22px 22px;
}

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

.quote-form button {
  border: 0;
  cursor: pointer;
}

.quote-layout .button-secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.quote-layout .button-secondary:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

@media (max-width: 980px) {
  .hero.exportza-hero,
  .page-hero.shop-hero {
    background:
      linear-gradient(90deg, rgba(8, 8, 10, 0.8), rgba(8, 8, 10, 0.56), rgba(8, 8, 10, 0.24)),
      url("assets/catalogue-import-ship.jpeg") center / cover;
  }

  .shop-hero h1,
  .shop-hero .eyebrow,
  .shop-hero .page-hero-content p {
    color: var(--paper);
  }

  .shop-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .page-hero.shop-hero {
    background:
      linear-gradient(90deg, rgba(8, 8, 10, 0.84), rgba(8, 8, 10, 0.64), rgba(8, 8, 10, 0.34)),
      url("assets/catalogue-import-ship.jpeg") center / cover;
  }

  .shop-hero h1,
  .shop-hero .eyebrow,
  .shop-hero .page-hero-content p {
    color: var(--paper);
  }

  .catalogue-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .catalogue-summary {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .shop-product-grid {
    grid-template-columns: 1fr;
  }

  .shop-product-card .button {
    width: calc(100% - 36px);
    margin-right: 18px;
    margin-left: 18px;
  }

  .product-copy {
    padding-right: 18px;
    padding-left: 18px;
  }

  .shop-product-card dl {
    margin-right: 18px;
    margin-left: 18px;
  }

  .catalogue-custom-section {
    padding-bottom: 62px;
  }

  .partner-panel,
  .supplier-callout {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .partner-note {
    padding: 20px;
  }

  .partner-section,
  .supplier-callout-section {
    padding-bottom: 62px;
  }

  .industries-layout,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industries-section {
    padding: 62px 0;
  }
}

/* Final visual polish: photo-led category heroes and real product imagery */
.page-hero {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.82), rgba(8, 8, 10, 0.58), rgba(8, 8, 10, 0.26)),
    var(--page-image) center / cover;
}

.page-hero::before {
  background:
    linear-gradient(90deg, var(--brand-red) 0 9px, transparent 9px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 42%);
}

.page-hero h1,
.page-hero .eyebrow,
.page-hero p:last-child {
  color: var(--paper);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.18);
}

.page-hero p:last-child {
  color: rgba(255, 255, 255, 0.88);
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card .product-image {
  display: block;
  min-height: 168px;
  background-color: var(--paper);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--line);
}

.product-image::before,
.product-image::after,
.product-card h3::before {
  content: none !important;
  display: none !important;
}

.product-card h3 {
  display: block;
  min-height: auto;
  padding: 18px 18px 6px;
}

.product-card p {
  padding: 0 18px 18px;
}

.spec-list {
  padding-left: 34px;
}

.image-rice { background-image: url("assets/food-rice.jpg"); }
.image-flour { background-image: url("assets/food-flour.jpg"); }
.image-sugar { background-image: url("assets/food-sugar.jpg"); }
.image-oil { background-image: url("assets/food-cooking-oil.jpg"); }
.image-pulses { background-image: url("assets/food-lentils.jpg"); }
.image-dryfood { background-image: url("assets/food-dry-food.jpg"); }
.image-canned { background-image: url("assets/food-canned-food.jpg"); }
.image-beverages { background-image: url("assets/food-beverages.jpg"); }
.image-grocery { background-image: url("assets/food-general-consumer.jpg"); }
.image-steel-sheet { background-image: url("assets/construction-ms-godown.jpg"); }
.image-deformed-bars { background-image: url("assets/construction-deformed-bars.jpg"); }
.image-ms-steel { background-image: url("assets/construction-ms-items.jpg"); }
.image-ss-steel { background-image: url("assets/construction-ss-items.jpg"); }
.image-structural { background-image: url("assets/construction-ms-godown.jpg"); }
.image-construction { background-image: url("assets/construction-general-materials.jpg"); }
.image-gi-items { background-image: url("assets/construction-gi-items.jpg"); }
.image-roofing { background-image: url("assets/construction-roofing-sheet.jpg"); }
.image-pvc-pipes { background-image: url("assets/construction-pvc-pipe-fittings.jpg"); }
.image-pipes { background-image: url("assets/construction-pipes.jpg"); }
.image-cement { background-image: url("assets/construction-cement.jpg"); }
.image-hardware { background-image: url("assets/construction-hardware.jpg"); }
.image-island-delivery { background-image: url("assets/home-cargo-boat.jpg"); }
.image-material-cargo { background-image: url("assets/cargo-loading-exportza.jpg"); }
.image-bulk-goods { background-image: url("assets/logistics-landing-craft.jpg"); }

@media (max-width: 980px) {
  .page-hero {
    background:
      linear-gradient(90deg, rgba(8, 8, 10, 0.84), rgba(8, 8, 10, 0.62), rgba(8, 8, 10, 0.3)),
      var(--page-image) center / cover;
  }
}

@media (max-width: 680px) {
  .page-hero {
    background:
      linear-gradient(90deg, rgba(8, 8, 10, 0.86), rgba(8, 8, 10, 0.68), rgba(8, 8, 10, 0.38)),
      var(--page-image) center / cover;
  }

  .product-card .product-image {
    min-height: 148px;
  }
}

/* Smooth UI motion */
.hero-content,
.page-hero-content {
  animation: hero-content-in 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.division-photo,
.product-card .product-image,
.catalogue-photo {
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), filter 520ms ease;
}

.division-card:hover,
.product-card:hover,
.shop-product-card:hover,
.contact-card:hover,
.metric-card:hover,
.why-card:hover,
.process-card:hover {
  transform: translateY(-5px);
}

.division-card:hover .division-photo,
.product-card:hover .product-image,
.shop-product-card:hover .catalogue-photo {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.reveal-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-content-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}
