/* ============================================================
   SupFreight International Logistics — Website Styles
   Colors: Navy #0C2340 | Blue #2176BC | Gold #E7A73F | Light #F4F7FA
   ============================================================ */

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

:root {
  --navy:  #0C2340;
  --blue:  #2176BC;
  --gold:  #E7A73F;
  --goldd: #C4861F;
  --ink:   #212D3A;
  --gray:  #5F6C7A;
  --light: #F4F7FA;
  --panel: #EBF1F7;
  --white: #ffffff;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(12,35,64,.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NAV ---- */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy);
  transition: box-shadow .2s;
}
#nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.25); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo img { height: 36px; width: auto; }

#menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
#menu a {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .15s;
}
#menu a:hover { color: var(--gold); text-decoration: none; }

.btn-nav {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: background .15s !important;
}
.btn-nav:hover { background: var(--goldd) !important; }

.hamburger {
  display: none;
  background: none; border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('assets/cover.png') center/cover no-repeat;
  opacity: .12;
}
.hero-inner { position: relative; max-width: 780px; }

.hero-eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.78);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background .15s, transform .1s;
  display: inline-block;
}
.btn-primary:hover { background: var(--goldd); text-decoration: none; transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.4);
  transition: border-color .15s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.bg-light { background: var(--light); }
.bg-navy  { background: var(--navy); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.section-header h2::after {
  content: '';
  position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.section-header.light h2 { color: var(--white); }
.section-header.light h2::after { background: var(--gold); }

.section-sub {
  margin-top: 14px;
  font-size: 16px;
  color: var(--gray);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-header.light .section-sub { color: rgba(255,255,255,.7); }

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  margin-bottom: 48px;
}
.about-text p { margin-bottom: 16px; color: var(--ink); line-height: 1.75; }
.about-text p:last-child { margin-bottom: 0; }
.accent { color: var(--navy); }

.about-panel {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 28px;
}
.about-panel h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--goldd);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.facts { list-style: none; }
.facts li {
  font-size: 14px;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid rgba(33,118,188,.12);
  line-height: 1.5;
}
.facts li:last-child { border-bottom: none; }
.fact-key { font-weight: 700; color: var(--navy); display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 2px; }

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--navy);
  padding: 28px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat-num { font-size: 40px; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-lab { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.75); letter-spacing: .06em; text-transform: uppercase; }

/* ---- WHY US CARDS ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-top: 3px solid var(--gold);
}
.card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.service-icon { width: 56px; height: 56px; object-fit: contain; margin: 0 auto 16px; }
.service-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ---- CALLOUT ---- */
.callout {
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  padding: 18px 24px;
  border-radius: var(--radius);
}
.callout.gold { background: rgba(255,255,255,.06); border: 1px solid rgba(231,167,63,.3); }

/* ---- NOMINATED ---- */
.nominated-intro {
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.75;
  max-width: 840px;
  margin: 0 auto 48px;
  text-align: center;
}
.nominated-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}
.nominated-bullets h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}
.nominated-bullets ul { list-style: none; }
.nominated-bullets li {
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.65;
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nominated-bullets li:last-child { border-bottom: none; }
.nominated-bullets li::before {
  content: '▸';
  color: var(--gold);
  position: absolute; left: 0;
  font-size: 13px;
}
.nominated-map img {
  border-radius: var(--radius);
  width: 100%;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.contact-logo { height: 44px; width: auto; margin-bottom: 28px; }
.contact-list { list-style: none; }
.contact-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--panel);
  font-size: 15px;
}
.contact-list li:last-child { border-bottom: none; }
.contact-key { font-weight: 700; color: var(--navy); display: inline-block; min-width: 110px; }
.contact-list a { color: var(--blue); }

.contact-closing {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.contact-closing p {
  color: var(--white);
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 24px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .nominated-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hamburger { display: block; }
  #menu {
    display: none;
    flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--navy);
    padding: 16px 24px 24px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  #menu.open { display: flex; }
  #menu a { font-size: 16px; }
  .cards-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero { padding: 120px 0 60px; }
}
