/* =====================
   GOLDEN GATE LOGISTICS
   style.css
   ===================== */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;900&family=Inter:wght@400;500&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- NAV ---------- */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 48px;
  background: #1c1c1c;
  border-bottom: 0.5px solid #2e2e2e;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  height: 140px;
  width: 280px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  color: #aaa;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-cta {
  background: transparent;
  color: #c8a03c;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 11px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid #c8a03c;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: #c8a03c;
  color: #111;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px 48px;
  overflow: hidden;
}

.hero-video,
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 1;
}

.hero-wordmark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 16vw, 200px);
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  pointer-events: none;
  user-select: none;
  padding-top: 16px;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 160, 60, 0.15);
  color: #c8a03c;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  border: 0.5px solid rgba(200, 160, 60, 0.35);
}

.hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5.5vw, 72px);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-gold {
  background: #c8a03c;
  color: #111;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 11px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.btn-gold:hover {
  opacity: 0.88;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 0.5px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #1c1c1c;
}

.stat-item {
  padding: 28px 48px;
  border-right: 0.5px solid #2e2e2e;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: #c8a03c;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: #666;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 80px 48px;
  background: #f0eeea;
}

.section-white {
  padding: 80px 48px;
  background: #fff;
}

.section-dark {
  padding: 80px 48px;
  background: #1c1c1c;
}

.pill {
  display: inline-block;
  background: #e2e0db;
  color: #666;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.pill-dark {
  display: inline-block;
  background: #1c1c1c;
  color: #c8a03c;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  border: 0.5px solid #2e2e2e;
}

.section-heading {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 42px);
  color: #111;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 14px;
  color: #777;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 48px;
}

/* ---------- ABOUT BLURB ---------- */
.about-blurb {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2.4vw, 22px);
  color: #111;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: -0.02em;
}

/* ---------- IMAGE STRIP ---------- */
.img-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.75fr;
  gap: 12px;
  margin-top: 48px;
}

.img-tile {
  border-radius: 14px;
  overflow: hidden;
  height: 280px;
}

.img-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-tile:hover img {
  transform: scale(1.04);
}

/* ---------- SERVICES GRID ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e5e5e5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.svc-card {
  background: #fff;
  padding: 36px 32px;
  transition: background 0.2s;
}

.svc-card:hover {
  background: #faf8f4;
}

.svc-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 12px;
  color: #c8a03c;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.svc-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.3;
}

.svc-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
}

/* ---------- VALUES GRID ---------- */
.vals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #e5e5e5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.val-card {
  background: #f8f6f2;
  padding: 36px 32px;
}

.val-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #111;
  margin-bottom: 10px;
}

.val-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px 48px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 4.5vw, 52px);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 600px;
  margin-top: 14px;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-heading {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 3vw, 32px);
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.contact-p {
  font-size: 14px;
  color: #777;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-info-row {
  margin-bottom: 16px;
}

.contact-info-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 3px;
}

.contact-info-val {
  font-size: 15px;
  font-weight: 500;
  color: #111;
}

/* ---------- FORM ---------- */
.contact-form {
  background: #fff;
  border-radius: 20px;
  border: 0.5px solid #e5e5e5;
  padding: 36px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 0.5px solid #ddd;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: #111;
  background: #fafafa;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c8a03c;
  background: #fff;
}

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

.form-submit {
  width: 100%;
  background: #1c1c1c;
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}

.form-submit:hover {
  background: #c8a03c;
  color: #111;
}

/* ---------- FOOTER ---------- */
footer {
  background: #1c1c1c;
  border-top: 0.5px solid #2e2e2e;
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer-copy {
  font-size: 12px;
  color: #555;
}

.footer-email {
  font-size: 12px;
  color: #c8a03c;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .page-hero {
    padding: 40px 20px;
  }

  .section,
  .section-white,
  .section-dark {
    padding: 56px 20px;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    padding: 20px 20px;
  }

  .img-strip {
    grid-template-columns: 1fr 1fr;
  }

  .img-strip .img-tile:last-child {
    display: none;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .vals-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}