/* ============================================================
   ALMIGHTY INVESTMENTS CC — Main Stylesheet
   ============================================================ */

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

:root {
  --navy: #060B18;
  --navy-mid: #0A0F1E;
  --navy-light: #0F1829;
  --gold: #B8960A;
  --gold-light: #D4AE14;
  --gold-dim: rgba(184,150,10,0.15);
  --white: #ffffff;
  --grey: #8A95A8;
  --border: rgba(184,150,10,0.25);
}

html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* PAGE SYSTEM */
.page { display: none; }
.page.active { display: block; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 14px 50px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(6,11,24,0.15);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s;
}
nav.scrolled {
  background: rgba(6,11,24,0.95);
  border-bottom-color: var(--border);
}
.nav-left { display: flex; align-items: center; gap: 16px; cursor: pointer; }
.nav-logo-img { height: 36px; width: auto; }
.nav-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.2); }
.nav-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
nav ul { display: flex; list-style: none; gap: 32px; align-items: center; }
nav ul a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.75); text-decoration: none;
  transition: color 0.2s; cursor: pointer;
}
nav ul a:hover, nav ul a.active-link { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 9px 22px; font-weight: 600 !important; letter-spacing: 2px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 65px; left: 0; right: 0; z-index: 190;
  background: rgba(6,11,24,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 20px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 0;
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--grey);
  text-decoration: none; border-bottom: 1px solid rgba(184,150,10,0.1); cursor: pointer;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ── SECTION COMMONS ── */
.section-tag {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-h2 {
  font-family: 'Rajdhani', sans-serif; font-size: clamp(34px,4vw,54px);
  font-weight: 700; text-transform: uppercase; line-height: 1.05; margin-bottom: 18px;
}
.section-rule { width: 48px; height: 2px; background: var(--gold); margin-bottom: 26px; }
section { padding: 90px 50px; }

/* ── TICKER ── */
.ticker-wrap { background: var(--gold); overflow: hidden; padding: 10px 0; }
.ticker { display: flex; width: max-content; animation: ticker 35s linear infinite; }
.ticker-item {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--navy); padding: 0 28px;
}
.ticker-dot { width: 4px; height: 4px; background: var(--navy); border-radius: 50%; opacity: 0.5; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════════════════
   HERO — cinematic, photo-forward
   ══════════════════════════ */
#home-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover; background-position: center 40%;
  opacity: 1;
  transform: scale(1.04);
  animation: slowZoom 18s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  0%   { transform: scale(1.04) translateY(0px); }
  100% { transform: scale(1.12) translateY(-12px); }
}
.hero-color-grade {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(184,120,0,0.18) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(0,5,15,0.15) 0%, transparent 30%);
  mix-blend-mode: multiply;
}
.hero-left-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,
      rgba(4,8,20,0.88) 0%,
      rgba(4,8,20,0.72) 28%,
      rgba(4,8,20,0.28) 55%,
      rgba(4,8,20,0.04) 70%,
      transparent 100%
    ),
    linear-gradient(to top, rgba(4,8,20,0.6) 0%, transparent 25%);
}
.hero-light-leak {
  position: absolute; top: -20%; right: -5%; width: 65%; height: 80%;
  background: radial-gradient(ellipse at 60% 20%, rgba(220,175,40,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom, transparent 0px, transparent 3px,
    rgba(0,0,0,0.025) 3px, rgba(0,0,0,0.025) 4px
  );
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 4;
  padding: 130px 50px 100px; max-width: 700px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(184,150,10,0.5); padding: 8px 18px; margin-bottom: 32px;
  background: rgba(184,150,10,0.1); backdrop-filter: blur(8px);
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-badge span {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
}
.hero-h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(56px,8vw,100px); font-weight: 700;
  line-height: 0.88; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 28px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero-h1 .gold { color: var(--gold); }
.hero-h1 .outline { -webkit-text-stroke: 1.5px rgba(255,255,255,0.85); color: transparent; }
.hero-rule { width: 60px; height: 2px; background: var(--gold); margin-bottom: 26px; }
.hero-sub {
  font-size: 17px; line-height: 1.85;
  color: rgba(255,255,255,0.82); max-width: 460px; margin-bottom: 42px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold); color: var(--navy); padding: 15px 32px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; text-decoration: none;
  cursor: pointer; border: none; transition: background 0.2s, transform 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.4); color: var(--white); padding: 15px 32px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; text-decoration: none;
  cursor: pointer; background: rgba(255,255,255,0.06); backdrop-filter: blur(6px);
  transition: border-color 0.2s, color 0.2s, background 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,150,10,0.08); }

.hero-stats {
  position: absolute; bottom: 50px; right: 50px; z-index: 4;
  display: flex; gap: 2px;
}
.hero-stat-card {
  padding: 20px 28px; background: rgba(6,11,24,0.55);
  backdrop-filter: blur(16px); border: 1px solid rgba(184,150,10,0.2);
  text-align: center; border-top: 2px solid var(--gold);
}
.hero-stat-num {
  font-family: 'Rajdhani', sans-serif; font-size: 30px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px;
}
.scroll-cue {
  position: absolute; bottom: 48px; left: 50px; z-index: 4;
  display: flex; align-items: center; gap: 12px;
}
.scroll-line {
  width: 40px; height: 1px; background: rgba(184,150,10,0.6);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; left: -100%; top: 0; height: 1px; width: 100%;
  background: var(--gold); animation: scrollSlide 2s ease infinite;
}
@keyframes scrollSlide { 0% { left: -100%; } 100% { left: 100%; } }
.scroll-text {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.45);
}

/* ── ABOUT PAGE ── */
.page-hero {
  position: relative; height: 420px; overflow: hidden;
  background-size: cover; background-position: center 30%;
  margin-top: 65px;
}
.page-hero.about-hero   { background-image: url('../images/port-aerial.jpg'); }
.page-hero.services-hero { background-image: url('../images/logistics.jpg'); height: 380px; }
.page-hero.cargo-hero   { background-image: url('../images/containers.jpg'); height: 380px; }
.page-hero.contact-hero { background-image: url('../images/port-gate.jpg'); height: 340px; }
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(6,11,24,0.4) 0%, var(--navy-mid) 100%);
}
.page-hero-title { position: absolute; bottom: 50px; left: 50px; z-index: 2; }
.page-hero-title h1 {
  font-family: 'Rajdhani', sans-serif; font-size: clamp(42px,5vw,72px);
  font-weight: 700; text-transform: uppercase; line-height: 1;
}
.page-hero-title h1 span { color: var(--gold); }

/* Grid layouts */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; max-width: 1200px; margin: 0 auto; }
.four-col { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; max-width: 1200px; margin: 0 auto; }
.max-w { max-width: 1200px; margin: 0 auto; }

/* Metric cards */
.metrics-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 36px; }
.metric-card { background: var(--navy-light); border: 1px solid var(--border); padding: 22px 24px; border-top: 2px solid var(--gold); }
.metric-num { font-family: 'Rajdhani', sans-serif; font-size: 36px; font-weight: 700; color: var(--gold); line-height: 1; }
.metric-label { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-top: 5px; }

/* Vision / Mission */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; max-width: 1200px; margin: 0 auto; }
.vm-card { background: var(--navy-light); border: 1px solid var(--border); padding: 40px 36px; border-top: 3px solid var(--gold); }
.vm-label { font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.vm-text { font-size: 15px; line-height: 1.9; color: var(--grey); }

/* Service cards */
.service-card { background: var(--navy-light); border: 1px solid var(--border); padding: 36px 28px; position: relative; overflow: hidden; transition: background 0.3s; }
.service-card:hover { background: rgba(15,24,41,0.95); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: 'Rajdhani', sans-serif; font-size: 48px; font-weight: 700; color: rgba(184,150,10,0.1); line-height: 1; margin-bottom: 20px; }
.service-img { width: 100%; height: 160px; object-fit: cover; margin-bottom: 20px; border: 1px solid rgba(184,150,10,0.15); }
.service-name { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.service-desc { font-size: 14px; line-height: 1.8; color: var(--grey); }

/* Cargo grid */
.cargo-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; max-width: 1200px; margin: 0 auto; }
.cargo-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; max-width: 1200px; margin: 3px auto 0; }
.cargo-item { position: relative; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 3/4; }
.cargo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.cargo-item:hover img { transform: scale(1.05); }
.cargo-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,11,24,0.92) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; }
.cargo-item:hover .cargo-item-overlay { opacity: 1; }
.cargo-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); border-top: 1px solid var(--border); background: rgba(6,11,24,0.7); }
.cargo-label span { color: var(--gold); margin-right: 6px; }
.cargo-extra-item { position: relative; overflow: hidden; height: 280px; border: 1px solid var(--border); }
.cargo-extra-item img { width: 100%; height: 100%; object-fit: cover; }
.cargo-extra-item .cargo-label { bottom: 0; }

/* CEO Quote */
.ceo-quote { background: var(--gold); padding: 80px 50px; text-align: center; position: relative; overflow: hidden; }
.ceo-quote::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,0,0,0.03) 20px, rgba(0,0,0,0.03) 21px); }
.ceo-quote-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.quote-mark { font-family: 'Rajdhani', sans-serif; font-size: 110px; font-weight: 700; color: rgba(0,0,0,0.1); line-height: 0.7; margin-bottom: 18px; }
.quote-text { font-size: clamp(17px,2.2vw,24px); font-weight: 300; line-height: 1.75; color: var(--navy); margin-bottom: 28px; font-style: italic; }
.quote-attr strong { display: block; font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--navy); }
.quote-attr span { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(6,11,24,0.6); }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; max-width: 1200px; margin: 40px auto 0; }
.value-card { background: var(--navy-light); border: 1px solid var(--border); padding: 32px 28px; display: flex; gap: 18px; align-items: flex-start; }
.value-num { font-family: 'Rajdhani', sans-serif; font-size: 40px; font-weight: 700; color: var(--gold); line-height: 0.9; flex-shrink: 0; }
.value-name { font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.value-desc { font-size: 13px; line-height: 1.8; color: var(--grey); }

/* Port strip */
.port-strip { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3px; max-width: 1200px; margin: 0 auto; }
.port-strip-img { width: 100%; object-fit: cover; border: 1px solid var(--border); }
.port-strip-img.tall { height: 400px; }
.port-strip-img.short { height: 197px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: start; max-width: 1200px; margin: 0 auto; }
.contact-items { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding-bottom: 20px; border-bottom: 1px solid rgba(184,150,10,0.1); }
.contact-icon { width: 40px; height: 40px; background: var(--gold-dim); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.contact-label { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-value { font-size: 14px; color: var(--white); line-height: 1.6; }
.wa-contact-btn { display: inline-flex; align-items: center; gap: 12px; background: #25D366; color: var(--white); padding: 14px 28px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; margin-top: 24px; transition: background 0.2s; cursor: pointer; border: none; }
.wa-contact-btn:hover { background: #1fb658; }

/* Form */
.contact-form { background: var(--navy-light); border: 1px solid var(--border); padding: 44px; }
.form-title { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.form-row { margin-bottom: 18px; }
.form-label { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.form-input, .form-textarea, .form-select { width: 100%; background: rgba(6,11,24,0.6); border: 1px solid var(--border); color: var(--white); padding: 11px 14px; font-family: 'Barlow', sans-serif; font-size: 14px; outline: none; transition: border-color 0.2s; }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
.form-textarea { height: 95px; resize: vertical; }
.form-select option { background: var(--navy); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; background: var(--gold); color: var(--navy); border: none; padding: 14px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; margin-top: 6px; transition: background 0.2s; }
.form-submit:hover { background: var(--gold-light); }
.form-success { display: none; margin-top: 14px; padding: 14px; background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3); color: #25D366; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }

/* Home services preview */
.home-services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.home-service-card { background: var(--navy-light); border: 1px solid var(--border); padding: 28px 22px; border-top: 2px solid var(--gold); }
.home-service-num { font-family: 'Rajdhani', sans-serif; font-size: 38px; font-weight: 700; color: rgba(184,150,10,0.15); line-height: 1; margin-bottom: 14px; }
.home-service-name { font-family: 'Rajdhani', sans-serif; font-size: 17px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.home-service-desc { font-size: 13px; line-height: 1.8; color: var(--grey); }

/* Footer */
footer { background: var(--navy); border-top: 1px solid var(--border); padding: 36px 50px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { height: 28px; width: auto; }
.footer-copy { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Utility */
.text-grey { font-size: 15px; line-height: 1.9; color: var(--grey); }
.text-grey strong { color: var(--white); font-weight: 500; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }
.img-full { width: 100%; height: 360px; object-fit: cover; border: 1px solid var(--border); }
.img-half { width: 100%; height: 220px; object-fit: cover; border: 1px solid var(--border); border-top: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  nav ul { display: none; }
  .hamburger { display: flex; }
  section { padding: 60px 20px; }
  .hero-content { padding: 120px 20px 90px; max-width: 100%; }
  .hero-stats { display: none; }
  .scroll-cue { display: none; }
  .two-col, .contact-grid, .vm-grid { grid-template-columns: 1fr; gap: 30px; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .cargo-grid { grid-template-columns: 1fr 1fr; }
  .cargo-grid-3 { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .port-strip { grid-template-columns: 1fr; }
  .port-strip-img.short, .port-strip-img.tall { height: 220px; }
  .home-services-grid { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; text-align: center; padding: 28px 20px; }
  .page-hero { height: 260px; margin-top: 65px; }
  .page-hero-title { bottom: 24px; left: 20px; }
}
@media (max-width: 600px) {
  .three-col, .cargo-grid, .cargo-grid-3, .home-services-grid { grid-template-columns: 1fr; }
  .values-grid, .form-grid, .metrics-row { grid-template-columns: 1fr; }
}
