:root {
  --primary-yellow: #ffb400;
  --primary-dark: #121212;
  --bg-light: #ffffff;
  --bg-grey: #f7f7f8;
  --text-white: #ffffff;
  --text-black: #1a1a1a;
  --text-grey: #666666;

  --font-heading: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-black);
  background-color: var(--bg-light);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

ul {
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 800;
}

span {
  color: var(--primary-yellow);
}

.btn-primary {
  background-color: var(--primary-yellow);
  color: #121212;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 13px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(255, 180, 0, 0.25);
  white-space: nowrap;
}

header {
  background-color: var(--bg-light);
  padding: 14px 0;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  height: 32px;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.08));
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.5px;
  line-height: 1;
}

.brand-main {
  font-weight: 900;
  font-size: 16px;
  color: #121212;
  text-transform: uppercase;
}

.brand-accent {
  font-weight: 800;
  font-size: 16px;
  color: var(--primary-yellow);
  text-transform: uppercase;
}

.brand-tag {
  font-weight: 600;
  font-size: 10px;
  color: #666;
  background-color: #ededed;
  padding: 2px 4px;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  gap: 4px;
  background-color: var(--bg-grey);
  padding: 4px 10px;
  border-radius: 30px;
  border: 1px solid #e5e5e5;
}

.nav-links a {
  color: var(--text-black);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
}

.nav-links a:hover {
  background-color: #ffffff;
  color: var(--primary-dark);
}

.hero-section {
  background-image: url("truck.jpg");
  background-size: cover;
  background-position: center;
  height: 65vh;
  min-height: 420px;
  border-radius: 20px;
  position: relative;
  color: var(--text-white);
  display: flex;
  align-items: center;
  margin-top: 15px;
  padding: 0 40px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(18, 18, 18, 0.88) 0%,
    rgba(18, 18, 18, 0.65) 50%,
    rgba(18, 18, 18, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 180, 0, 0.2);
  border: 1px solid var(--primary-yellow);
  color: var(--primary-yellow);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.8px;
}

.hero-content h1 {
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.hero-content p {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.5;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
}

/* Quick Info Box */
.quick-info-section {
  margin-top: 20px;
  padding-bottom: 20px;
}

.quick-info-grid {
  display: flex;
  justify-content: center;
}

.info-box {
  border-radius: 20px;
  padding: 30px 40px;
  width: 100%;
}

.info-box-dark {
  background-color: #161616;
  color: #ffffff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.info-col {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-icon {
  font-size: 20px;
  background-color: #242424;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #333;
  flex-shrink: 0;
}

.info-col h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
  color: #ffffff;
}

.info-col .sub-text {
  font-size: 13px;
  color: #9e9e9e;
}

.info-col .highlight-contact {
  font-size: 14px;
  color: var(--primary-yellow);
  font-weight: 700;
}

.services-section {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 26px;
}

.section-title p {
  color: var(--text-grey);
  font-size: 14px;
  margin-top: 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background-color: var(--bg-grey);
  padding: 28px 22px;
  border-radius: 18px;
  border: 1px solid #eaeaea;
}

.card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-grey);
  line-height: 1.5;
}

/* Footer */
footer {
  background-color: #121212;
  color: #999999;
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  border-top: 1px solid #222;
  margin-top: 30px;
}

footer strong {
  color: #ffffff;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
  }

  .logo img {
    height: 28px;
  }

  .brand-main,
  .brand-accent {
    font-size: 14px;
  }

  .brand-tag {
    font-size: 9px;
  }

  .header-actions {
    display: none;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    order: 3;
    padding: 6px;
    margin-top: 4px;
  }

  .nav-links a {
    font-size: 12px;
    padding: 4px 14px;
  }

  .hero-section {
    height: auto;
    min-height: 380px;
    padding: 30px 20px;
    margin-top: 10px;
    border-radius: 16px;
  }

  .hero-overlay {
    background: rgba(18, 18, 18, 0.82);
  }

  .hero-badge {
    font-size: 10px;
    padding: 4px 10px;
    margin-bottom: 10px;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 13px;
    line-height: 1.5;
  }

  .info-box {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .info-box-dark {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .services-section {
    padding: 35px 0;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-card {
    padding: 22px 18px;
  }
}
