/* ===========================
   BRAND COLORS
=========================== */

:root {
  --primary: #0A2742;
  --secondary: #8FA3BF;
  --accent: #F4F4F6;
  --maroon: #AA1F34;
  --maroon-dark: #470500;
  --charcoal: #222A2A;
  --white: #ffffff;
  --bg: #f6f7f9;
  --surface: #ffffff;
  --border: rgba(17, 24, 39, 0.12);
  --text: #1f2937;
  --text-muted: #4b5563;
  --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.06);
  --shadow-md: 0 10px 30px rgba(17, 24, 39, 0.10);
  --radius: 12px;
}

/* ===========================
   GLOBAL
=========================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.15;
}

a {
  color: var(--maroon-dark);
  text-decoration: none;
}

a:hover {
  color: var(--secondary);
}

section {
  padding: 68px 24px;
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

/* ===========================
   HEADER (Option A)
=========================== */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  height: 100px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.nav a {
  margin-left: 0;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.nav a.nav-active {
  font-weight: 700;
  color: var(--maroon);
  background-color: rgba(170, 31, 52, 0.10);
}

/* ===========================
   MAIN HERO (Home)
=========================== */

.hero {
  position: relative;
  height: 70vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.hero.hero-city {
  background: url("assets/hero-logistics-city.jpg") center / cover no-repeat #111 !important;
  position: relative;
  isolation: isolate;
}

.hero.hero-city::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    115deg,
    rgba(0, 0, 0, 0.34),
    rgba(71, 5, 0, 0.14) 55%,
    rgba(0, 0, 0, 0.18)
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
  text-shadow: none;
}

.hero-content h1 {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.05;
}

.hero-actions {
  margin-top: 20px;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* CTA Buttons */

.cta-button,
.cta-button-dark,
.link-button,
.link-button-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.cta-button {
  background-color: var(--maroon);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.cta-button:hover {
  background-color: #8a0d1d;
  transform: translateY(-1px);
}

.cta-button-dark {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.50);
}

.cta-button-dark:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.70);
  color: var(--white);
  transform: translateY(-1px);
}

.link-button {
  background-color: transparent;
  color: var(--maroon);
  border-color: rgba(170, 31, 52, 0.35);
}

.link-button:hover {
  background-color: rgba(170, 31, 52, 0.08);
  border-color: rgba(170, 31, 52, 0.55);
}

.link-button-secondary {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border);
}

.link-button-secondary:hover {
  background-color: rgba(17, 24, 39, 0.04);
  border-color: rgba(17, 24, 39, 0.18);
}

/* ===========================
   HERO DESCRIPTION (Below)
=========================== */

.hero-intro {
  background-color: var(--surface);
  padding: 32px 40px;
  text-align: center;
  color: var(--text);
}

.hero-intro-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-intro p {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.7;
}

/* ===========================
   SERVICES PREVIEW
=========================== */

.services {
  background-color: var(--surface);
}

.services-note {
  margin: 18px auto 0;
  max-width: 900px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.services-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.service-card {
  width: 260px;
  background-color: rgba(17, 24, 39, 0.02);
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-card h3 {
  margin: 10px 0 10px;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 12px;
  color: var(--maroon-dark);
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background-color: rgba(170, 31, 52, 0.10);
  border: 1px solid rgba(170, 31, 52, 0.18);
}

/* ===========================
   ABOUT PREVIEW
=========================== */

.about-home {
  background-color: var(--bg);
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin: 18px 0 24px;
}

.about-list li::before {
  content: "• ";
  color: var(--maroon);
  font-weight: bold;
}

/* ===========================
   TESTIMONIALS
=========================== */

.testimonials {
  background-color: var(--surface);
}

.testimonial-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.testimonial-card {
  width: 300px;
  background-color: rgba(17, 24, 39, 0.02);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.testimonial-name {
  margin-top: 14px;
  font-weight: bold;
  color: var(--maroon-dark);
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--secondary);
}

/* ===========================
   CTA BANNER
=========================== */

.cta-banner {
  background-color: var(--maroon-dark);
  color: var(--white);
  text-align: center;
  padding: 60px 40px;
}

.cta-banner-text {
  margin-bottom: 20px;
}

/* ===========================
   SUBPAGE HERO (Option A)
=========================== */

.sub-hero {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.94);
  background-color: var(--maroon-dark);
  padding: 64px 24px;
}

.sub-hero-content {
  position: relative;
  max-width: 800px;
  padding: 0 20px;
}

.sub-hero-content h1 {
  font-size: 2.4rem;
  margin-bottom: 8px;
  color: var(--white);
  letter-spacing: -0.01em;
  font-weight: 800;
  line-height: 1.15;
}

.sub-hero-content p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  line-height: 1.55;
}

/* ===========================
   SUBPAGE CONTENT SECTIONS
=========================== */

.subpage-section {
  background-color: var(--surface);
}

.subpage-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.subpage-inner h2 {
  text-align: left;
  font-size: 1.8rem;
  margin-top: 44px;
  margin-bottom: 12px;
}

.subpage-inner h2:first-child {
  margin-top: 0;
}

.subpage-inner h3 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.subpage-inner p {
  color: var(--text-muted);
}

.subpage-inner li {
  color: var(--text-muted);
}

.section-cta {
  margin-top: 28px;
  text-align: center;
}

.content-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.content-card + .content-card {
  margin-top: 16px;
}

.content-card h2,
.content-card h3 {
  margin-top: 0;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.service-offering {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-offering-coming-soon {
  background-color: rgba(17, 24, 39, 0.015);
  border-style: dashed;
  border-color: rgba(17, 24, 39, 0.18);
}

.service-offering h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.service-offering p {
  margin-top: 0;
  margin-bottom: 12px;
}

.service-offering ul {
  margin: 0;
  padding-left: 18px;
}

.service-offering li {
  margin: 6px 0;
}

.service-disclaimer {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.service-disclaimer-invert {
  color: var(--text-muted);
}

.two-column-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 30px;
}

.col-left,
.col-right {
  flex: 1 1 280px;
}

/* Forms */

.form-card {
  background-color: var(--surface);
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.form-card form {
  margin-top: 14px;
}

.form-card label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 6px;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid rgba(17, 24, 39, 0.16);
  background-color: rgba(17, 24, 39, 0.02);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

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

.form-card button {
  width: auto;
  display: block;
  margin: 8px auto 0;
  text-align: center;
}

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  outline: none;
  border-color: rgba(170, 31, 52, 0.55);
  box-shadow: 0 0 0 3px rgba(170, 31, 52, 0.14);
  background-color: var(--surface);
}

/* ===========================
   FOOTER + LOWER NAV
=========================== */

.footer-links {
  text-align: center;
  padding: 1.5rem 0 0;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

 .footer-links span {
  color: rgba(17, 24, 39, 0.45);
 }

.footer-links a {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--maroon-dark);
  font-weight: 600;
}

.footer-links a:hover {
  background-color: rgba(170, 31, 52, 0.06);
}

.footer {
  background-color: var(--white);
  padding: 26px;
  border-top: 1px solid rgba(0,0,0,0.07);
  text-align: center;
  color: var(--text-muted);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1024px) {

  .logo {
    height: 80px;
  }
}

@media (max-width: 768px) {

  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    margin-top: 10px;
    width: 100%;
  }

  .nav a {
    padding: 9px 10px;
  }

  .logo {
    height: 64px;
  }

  section {
    padding: 44px 20px;
  }

  .hero {
    height: auto;
    padding: 80px 20px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .services-grid,
  .testimonial-grid {
    gap: 18px;
  }

  .service-card,
  .testimonial-card {
    width: 100%;
    max-width: 420px;
  }

  .sub-hero {
    height: auto;
    padding: 56px 20px;
  }

  .two-column-grid {
    flex-direction: column;
  }
}
