* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2a1f;
  background: #f7f6f1;
  line-height: 1.6;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  background: rgba(15, 31, 18, 0.88);
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav a:hover {
  color: #c7d77b;
}

.section {
  min-height: 100vh;
  padding: 4rem 8vw;
  scroll-margin-top: 0px;
}

.services h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 0.75rem;
  white-space: nowrap;
  }
  
.hero {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  background-image: url("images/tree-fort-logistics-home-page.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 21, 11, 0.58);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.hero-logo {
  width: min(420px, 78vw);
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.88);
  padding: 1.25rem 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

h1 {
  font-size: clamp(1.4rem, 2.8vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

p {
  font-size: 1.05rem;
}

.eyebrow {
  color: #72852d;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.button {
  display: inline-block;
  margin: 0.35rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: #c7d77b;
  color: #152016;
  text-decoration: none;
  font-weight: 800;
}

.button.secondary {
  background: #ffffff;
  color: #122015;
  border: 2px solid #ffffff;
  transition: all 0.25s ease;
}

.button.secondary:hover {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5vw;
}

.section-text {
  max-width: 680px;
}

.section-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.about {
  background: #f7f6f1;
}

.services {
  background: #e8eadf;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 1.75rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 1rem;
  max-width: 1280px;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  min-height: 190px;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.50rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.contact {
  background: #122015;
  color: #fff;
}

.contact .eyebrow {
  color: #c7d77b;
}

.contact a {
  color: #c7d77b;
}

.contact-item {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1rem 0;
}

.contact-item span {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: #c7d77b;
}

.contact-item p {
  margin: 0.25rem 0;
}

.footer {
  text-align: center;
  padding: 1.25rem;
  background: #0b140d;
  color: #fff;
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 950px) {
  .section {
    min-height: auto;
    padding: 5rem 6vw;
  }

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

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services h2 {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .nav {
    gap: 1rem;
    padding: 0.85rem 0.5rem;
  }

  .nav a {
    font-size: 0.72rem;
  }

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

  .section-image img {
    border-radius: 18px;
  }
    .services h2 {
    white-space: normal;
  }
}