/* =========================
   GOOGLE FONT
========================= */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

/* =========================
   RESET
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  background: #ffffff;
}

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

ul {
  list-style: none;
}

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

/* =========================
   VARIABLES
========================= */

:root {
  --primary-color: #f7bd27;
  --primary-dark: #e3a900;
  --dark-color: #17212b;
  --dark-blue: #101b25;
  --text-color: #555;
  --light-color: #f5f5f5;
  --white: #ffffff;

  --footer-color: #3b1f6e;
}

/* =========================
   COMMON
========================= */

.container {
  width: min(1180px, 90%);
  margin: auto;
}

.section {
  padding: 90px 0;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-subtitle {
  display: inline-block;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-heading h2 {
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.section-heading p {
  color: var(--text-color);
  line-height: 1.8;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 15px 28px;

  font-size: 13px;
  font-weight: 700;

  transition: 0.3s;

  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--dark-color);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--dark-color);
}

.btn-dark {
  background: var(--dark-color);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
}

/* =========================
   HEADER
========================= */

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;

  background: #fff;

  z-index: 9999;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.top-header {
  min-height: 100px;
  display: flex;
  align-items: center;
}

.top-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;

  font-size: 24px;
  font-weight: 800;

  line-height: 0.85;

  color: var(--dark-color);
}

.logo span {
  position: relative;
}

.logo span::after {
  content: "";

  display: inline-block;

  width: 30px;
  height: 10px;

  background: var(--primary-color);

  margin-left: 7px;

  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.logo strong {
  font-size: 16px;
  font-weight: 500;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 35px;
}

.header-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-info-icon {
  color: var(--primary-color);
  font-size: 24px;
}

.header-info-item span {
  display: block;

  font-size: 10px;
  color: #999;

  margin-bottom: 4px;
}

.header-info-item p {
  font-size: 12px;
  font-weight: 600;
}

.quote-btn {
  background: var(--primary-color);

  padding: 17px 24px;

  font-size: 11px;
  font-weight: 700;

  transition: 0.3s;
}

.quote-btn:hover {
  background: var(--primary-dark);
}

.mobile-menu-btn {
  display: none;

  border: none;
  background: transparent;

  font-size: 24px;

  cursor: pointer;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-list li {
  flex: 1;
  text-align: center;
}

.nav-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;

  padding: 20px 10px;

  font-size: 12px;
  font-weight: 600;

  border-left: 1px solid #eee;

  transition: 0.3s;
}

.nav-list li:last-child a {
  border-right: 1px solid #eee;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--primary-color);
  background: #fafafa;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;

  min-height: 560px;

  display: flex;
  align-items: center;

  background-image: url("../assets/images/hero-logistics.jpg");

  background-size: cover;
  background-position: center;

  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(8, 23, 35, 0.9),
    rgba(8, 23, 35, 0.55),
    rgba(8, 23, 35, 0.65)
  );
}

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

  text-align: center;
}

.hero-small-title {
  font-size: 13px;
  letter-spacing: 4px;

  color: var(--primary-color);

  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 68px);
  letter-spacing: 3px;

  margin-bottom: 20px;
}

.hero-description {
  font-size: clamp(18px, 3vw, 28px);

  color: #f5cf65;

  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  z-index: 3;

  font-size: 35px;
  color: var(--primary-color);

  cursor: pointer;
}

.hero-arrow-left {
  left: 20px;
}

.hero-arrow-right {
  right: 20px;
}

/* =========================
   SERVICE CARDS
========================= */

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;

  height: 310px;

  overflow: hidden;
}

.service-card img {
  height: 100%;
  object-fit: cover;

  transition: 0.5s;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;

  background: rgba(9, 24, 37, 0.58);

  transition: 0.3s;
}

.service-card:hover .service-card-overlay {
  background: rgba(9, 24, 37, 0.35);
}

.service-card-content {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 30px;

  color: #fff;
}

.service-card-icon {
  font-size: 45px;
  color: var(--primary-color);

  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 13px;
  line-height: 1.7;

  opacity: 0;

  max-height: 0;

  transition: 0.3s;
}

.service-card:hover p {
  opacity: 1;
  max-height: 100px;
}

/* =========================
   ABOUT HOME
========================= */

.about-home {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.about-content h2 {
  font-size: 36px;
  line-height: 1.35;

  color: var(--dark-color);

  margin-bottom: 25px;
}

.about-content p {
  color: var(--text-color);
  line-height: 1.9;

  margin-bottom: 20px;
}

.about-content .btn {
  margin-top: 15px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 50px;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-icon {
  min-width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--primary-color);
  color: #fff;

  font-size: 18px;
}

.feature-item h4 {
  margin-bottom: 8px;

  font-size: 15px;
}

.feature-item p {
  font-size: 12px;
  line-height: 1.7;

  color: #777;
}

/* =========================
   STATS
========================= */

.stats-section {
  padding: 65px 0;

  background: var(--light-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-item {
  background: #fff;

  text-align: center;

  padding: 40px 20px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);

  transition: 0.3s;
}

.stat-item:hover {
  transform: translateY(-8px);
}

.stat-icon {
  font-size: 40px;
  color: var(--primary-color);

  margin-bottom: 18px;
}

.stat-item h3 {
  font-size: 30px;
  color: var(--dark-color);

  margin-bottom: 8px;
}

.stat-item p {
  font-size: 13px;
  color: #777;
}

/* =========================
   WHY US
========================= */

.why-us {
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-card {
  text-align: center;

  padding: 45px 30px;

  border: 1px solid #eee;

  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.why-card i {
  font-size: 42px;
  color: var(--primary-color);

  margin-bottom: 25px;
}

.why-card h3 {
  margin-bottom: 15px;

  color: var(--dark-color);
}

.why-card p {
  font-size: 13px;
  color: #777;

  line-height: 1.8;
}

/* =========================
   QUOTE
========================= */

.quote-section {
  padding: 80px 0;

  background: var(--primary-color);
}

.quote-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;

  align-items: center;
}

.quote-content span {
  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2px;
}

.quote-content h2 {
  font-size: 38px;

  margin: 15px 0;
}

.quote-content p {
  line-height: 1.8;
}

.quote-form {
  display: grid;
  gap: 15px;
}

.quote-form input,
.quote-form select {
  width: 100%;

  padding: 17px;

  border: none;
  outline: none;

  font-family: inherit;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #3b1f6e;
  color: #fff;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 60px;
}

/* =========================
   FOOTER LOGO
========================= */

.footer-logo {
  display: inline-flex;
  flex-direction: column;

  font-size: 26px;
  font-weight: 800;
  line-height: 0.9;

  margin-bottom: 25px;

  color: #fff;
}

.footer-logo span {
  color: #f7bd27;
}

/* =========================
   FOOTER TEXT
========================= */

.footer-column > p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

/* =========================
   FOOTER TITLE
========================= */

.footer-column h3 {
  font-size: 16px;
  color: #fff;

  margin-bottom: 25px;

  position: relative;
}

.footer-column h3::after {
  content: "";

  display: block;

  width: 40px;
  height: 3px;

  background: #f7bd27;

  margin-top: 12px;
}

/* =========================
   FOOTER LINKS
========================= */

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-column ul a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);

  transition: all 0.3s ease;
}

.footer-column ul a:hover {
  color: #f7bd27;
  padding-left: 7px;
}

/* =========================
   SOCIAL LINKS
========================= */

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 25px;
}

.social-links a {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.1);
  color: #fff;

  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #f7bd27;
  color: #3b1f6e;

  transform: translateY(-3px);
}

/* =========================
   CONTACT INFO
========================= */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  font-size: 13px;
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.75);
}

.footer-contact i {
  color: #f7bd27;
  margin-top: 4px;

  min-width: 16px;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);

  padding: 22px 0;

  background: rgba(0, 0, 0, 0.08);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom a {
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #f7bd27;
}

.menu-overlay {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.5);

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;

  z-index: 10000;
}

.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* =========================
   BACK TO TOP
========================= */

.back-to-top {
  position: fixed;

  right: 25px;
  bottom: 25px;

  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;

  background: var(--primary-color);
  color: var(--dark-color);

  font-size: 17px;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;

  transform: translateY(20px);

  transition: 0.3s;

  z-index: 100;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--dark-color);
  color: #fff;
}
