* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ===== Header ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 60px;
  background: transparent; /* Transparent at top */
  color: #fff;
  z-index: 1000;
  transition: all 0.4s ease;
  height: 80px;
}

header.scrolled {
  background: #fff;
  color: #000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ff2e2e;
}

.logo img {
  width: 230px;
  display: block;

}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

header.scrolled nav ul li a {
  color: #000;
}

nav ul li a:hover {
  color: #ff2e2e;
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(to bottom, #111 65%, #ff2e2e 65%);
  min-height: 140vh;
  position: relative;
  overflow: hidden;
  padding-top: 160px; /* 🔥 FIX: header height */
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr; /* 🔥 RIGHT SIDE WIDER */
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  gap: 40px;
}

/* ===== Hero Text ===== */
.text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards 0.4s;
}

.text h3 {
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 10px;
}

.text .highlight {
  color: #ff2e2e;
}

.text h1 {
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: 130%;
}

.text p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 30px;
}

.text button {
  background: #ff2e2e;
  border: none;
  color: #fff;
  padding: 15px 40px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s;
}

.text button:hover {
  background: #e02020;
  transform: translateY(-3px);
}

/* ===== Truck Image Animation ===== */
.truck-image {
  position: relative;
  right: -900px;
  opacity: 0;
  animation: driveAcross 4s ease-out forwards 0.6s;
}

.truck-image img {
  width: 700px;
  transform: scale(1);
  filter: drop-shadow(0px 10px 25px rgba(0,0,0,0.5));
}

@keyframes driveAcross {
  0% {
    right: -900px;
    opacity: 0;
    transform: scale(1) rotateY(-3deg);
  }
  70% {
    right: 0px;
    opacity: 1;
    transform: scale(1) rotateY(0deg);
  }
  100% {
    right: 0px;
    opacity: 1;
    transform: scale(1) rotateY(0deg);
  }
}

/* ===== Fade Up Animation ===== */
@keyframes fadeUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


.logo-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 110px;
  height: 260px;
  margin-right: -100px;
}

/* Base */
.logo-item {
  width: 130px;
  opacity: 0.35;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
  filter: grayscale(100%);
}

/* Center */
.logo-item.active {
  opacity: 1;
  transform: scale(2.00);
  filter: grayscale(0%);
}

/* Side */
.logo-item.side {
  opacity: 0.45;
  transform: scale(1);
}

/* FADE OUT STATE */
.logo-item.fade-out {
  opacity: 0;
  transform: scale(0.9);
}





/* ===== Transport Section ===== */
.transport-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: #851111;
  padding: 60px 100px;
}

.transport-box {
  flex: 1;
  background: rgba(0, 0, 0, 0.15);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards 1.4s;
}

.transport-box h2 {
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.transport-box p {
  color: #f0f0f0;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background: #fff;
  color: #ff2e2e;
}




.about-partner {
  padding: 80px 5%;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* IMAGE SIDE */
.about-image {
  position: relative;
  flex: 1 1 450px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* Quote Box */
.quote-box {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: #e63946;
  color: #fff;
  padding: 20px;
  max-width: 280px;
  border-radius: 8px;
  font-size: 14px;
}

.quote-box span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.9;
}

/* CONTENT SIDE */
.about-content {
  flex: 1 1 450px;
}

.section-tag {
  color: #e63946;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
}

.about-content h2 {
  font-size: 36px;
  margin: 10px 0 20px;
  line-height: 1.3;
  color: #000;
}

.about-intro {
  color: #555;
  margin-bottom: 20px;
}

.about-highlight {
  border-left: 4px solid #e63946;
  padding-left: 15px;
  margin-bottom: 20px;
  color: #444;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-list li {
  margin-bottom: 10px;
  color: #333;
}

/* Button */
.btn.primary {
  background: #e63946;
  color: #fff;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}


.why-choose-us {
  padding: 80px 5%;
  background: #ffffff;
  text-align: center;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

.why-choose-us h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #000;
}

.why-choose-us h2 span {
  color: #e63946;
}

.why-subtitle {
  max-width: 650px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 16px;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* Card */
.why-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 40px 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: #e63946;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Icon */
.why-icon {
  font-size: 40px;
  color: #e63946;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #000;
}

.why-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.product-quality {
  padding: 80px 5%;
  background: #fafafa;
  text-align: center;
}

.quality-container {
  max-width: 1200px;
  margin: auto;
}

.product-quality h2 {
  font-size: 36px;
  color: #000;
  margin-bottom: 10px;
}

.product-quality h2 span {
  color: #e63946;
}

.quality-subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 16px;
}

/* Grid */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Item */
.quality-item {
  background: #fff;
  padding: 35px 25px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.quality-item:hover {
  transform: translateY(-6px);
  border-color: #e63946;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.quality-icon {
  font-size: 42px;
  margin-bottom: 20px;
  color: #e63946;
}

.quality-item h3 {
  font-size: 18px;
  color: #000;
  margin-bottom: 12px;
}

.quality-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.facts-section {
  position: relative;
  background: #000;
  padding: 0;
}

.facts-overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 80px 5%;
}

.facts-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

/* Image */
.facts-image {
  flex: 1 1 450px;
}

.facts-image img {
  width: 100%;
  border-radius: 10px;
}

/* Content */
.facts-content {
  flex: 1 1 450px;
  color: #fff;
}

.facts-tag {
  color: #e63946;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
}

.facts-content h2 {
  font-size: 36px;
  margin: 10px 0 20px;
}

.facts-text {
  color: #ddd;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Stats */
.facts-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.fact-box {
  border-left: 3px solid #e63946;
  padding-left: 15px;
}

.fact-box h3 {
  font-size: 32px;
  margin: 0;
  color: #fff;
}

.fact-box p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #ccc;
}

.site-footer {
  background: #000;
  color: #fff;
  padding-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 5% 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-box h3,
.footer-box h4 {
  color: #e63946;
  margin-bottom: 15px;
}

.footer-box p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.7;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}

.footer-box ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-box ul li a:hover {
  color: #e63946;
}

/* Social */
.footer-social a {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

.footer-social a:hover {
  color: #e63946;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding: 20px 5%;
  font-size: 13px;
  color: #aaa;
}
/* Logo */
.footer-logo {
  max-width: 160px;
  margin-bottom: -55px;
  margin-top: -65px;
}

/* Short paragraph */
.footer-about {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Social Icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  background: #111;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #e63946;
  color: #fff;
}






/* =====================================
   HAMBURGER DEFAULT
===================================== */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 3000;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  transition: 0.3s ease;
}

/* Scroll color change */
header.scrolled .hamburger span {
  background: #000;
}


/* =====================================
   TABLET (≤1024px)
===================================== */

@media (max-width: 1024px) {

  header {
    padding: 8px 30px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .text h1 {
    width: 100%;
    font-size: 2.2rem;
  }

  .transport-section {
    position: relative;
    flex-direction: column;
    padding: 40px 30px;
  }

  .about-container,
  .facts-container {
    flex-direction: column;
    text-align: center;
  }

  .logo-carousel {
    gap: 60px;
    margin-right: 0;
  }

  .facts-stats {
    justify-content: center;
  }

}


/* =====================================
   MOBILE (≤768px)
===================================== */

@media (max-width: 768px) {

  header {
    padding: 8px 20px;
    height: 70px;
  }

  .logo img {
    width: 150px;
  }

  /* Hide desktop menu */
  nav ul {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Mobile slide menu */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 270px;
    height: 100vh;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 2500;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  nav ul li a {
    font-size: 18px;
    color: #fff;
  }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Hero Fix */
  .hero {
    padding-top: 120px;
    min-height: auto;
  }

  .hero-content {
    padding: 0 20px;
  }

  .text h1 {
    font-size: 1.8rem;
  }

  .text p {
    font-size: 0.95rem;
  }

  .logo-carousel {
    gap: 30px;
    height: auto;
  }

  .logo-item {
    width: 100px;
  }

  .logo-item.active {
    transform: scale(1.3);
  }

  .transport-section {
    padding: 30px 20px;
  }

  .transport-box {
    padding: 20px;
  }

  .about-content h2,
  .why-choose-us h2,
  .product-quality h2,
  .facts-content h2 {
    font-size: 26px;
  }

  .facts-overlay {
    padding: 60px 20px;
  }

  .footer-container {
    gap: 25px;
  }

  .footer-logo {
    margin: 0 0 15px 0;
  }

}


/* =====================================
   SMALL MOBILE (≤480px)
===================================== */

@media (max-width: 480px) {

  .text h1 {
    font-size: 1.6rem;
  }

  .text h3 {
    font-size: 0.85rem;
  }

  .logo img {
    width: 180px;
  }

  .logo-item {
    width: 55px;
  }

  .logo-item.active {
    transform: scale(1.2);
  }

  .transport-section {
    padding: 25px 15px;
  }

}

/* ================================
   When header is scrolled
   Make mobile menu white too
================================ */

@media (max-width: 768px) {

  header.scrolled + nav,
  header.scrolled nav {
    background: #fff;
  }

  header.scrolled nav ul li a {
    color: #000;
  }

}


