* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #ffffff;
  color: #222;
  overflow-x: hidden;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
} 

/* ===============================
   NAVBAR
   =============================== */
.navbar {
  background: #1e3a5f;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo img {
  height: 200px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  margin-top: 30px;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a {
  position: relative;
  padding: 6px 12px;
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

/* HOVER EFFECT */
.nav-links a:hover,
.nav-links a.active {
  color: #ff8c1a;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #ff8c1a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* BUTTON */
.btn-primary {
  background: #ff8c1a;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #e67600;
}

.btn-outline {
  background: transparent;
  border: 1px solid #cbd5e1;
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===============================
   HERO
   =============================== */
.hero {
  min-height: 90vh;
  height: auto;
  background: url("assets/shipping-port-sunset-cargo-airplanes-trucks.jpg") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.25)),
    rgba(30,58,95,.55);
}

.hero-inner {
  position: relative;
  height: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 6% 60px;
}

.hero-content {
  max-width: 720px;
  color: #fff;
}

.badge {
  background: rgba(255,140,26,.15);
  color: #ffb36b;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #ff8c1a;
}

.hero p {
  font-size: 16px;
  line-height: 1.7;
  opacity: .9;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===============================
   STATS
   =============================== */
.stats {
  background: #fff;
  padding: 55px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  text-align: center;
}

.stat h2 {
  color: #ff8c1a;
  font-size: 34px;
}

.stat p {
  margin-top: 6px;
  color: #6b7c93;
  font-size: 14px;
}

/* ===============================
   PRODUCTS
   =============================== */
.products-section {
  padding: 80px 0;
}

.products-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
}

.section-badge {
  background: #fff1e6;
  color: #ff8c1a;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
}

.section-title {
  font-size: 46px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-subtitle {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* CARD */
.product-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  transition: box-shadow .3s ease;
}

.product-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.category {
  font-size: 11px;
  letter-spacing: 1px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
}

.tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 14px;
  white-space: nowrap;
}

/* TAG COLORS */
.premium { background: #fff1e6; color: #ff8c1a; }
.standard { background: #ecfdf5; color: #16a34a; }
.grade2 { background: #eff6ff; color: #2563eb; }
.grade3 { background: #f0fdfa; color: #0d9488; }

.product-card h3 {
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.4;
}

.product-card hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 14px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: #ff8c1a;
}

.price span {
  font-size: 13px;
  color: #64748b;
  font-weight: 400;
}

/* BULK BOX */
.bulk-box {
  margin: 70px auto 0;
  max-width: 700px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  padding: 26px;
  border-radius: 12px;
}

.bulk-box h4 {
  margin-bottom: 6px;
  font-size: 18px;
}

.bulk-box p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* ===============================
   SERVICES
   =============================== */
.services-section {
  background: #eef3f8;
  padding: 100px 0 60px;
}

.services-wrapper {
  background: #eef3f8;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 1px;
  color: #ff8c1a;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,.1);
}

.icon-box {
  width: 44px;
  height: 44px;
  background: #fff1e6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 18px;
}

.icon-box img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.service-card h4 {
  margin-bottom: 10px;
  color: #0f172a;
  font-size: 18px;
}

.service-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* ===============================
   WHY CHOOSE US
   =============================== */
.why-section {
  background: #eef3f8;
  padding: 120px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left {
  max-width: 600px;
}

.why-desc {
  margin: 16px 0 30px;
  color: #64748b;
  max-width: 480px;
  line-height: 1.7;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 14px;
}

.why-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #fff1e6;
  color: #ff8c1a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
}

.why-item h5 {
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 600;
}

.why-item p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

.why-right {
  position: relative;
}

.why-right img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.clients-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.clients-badge span {
  background: #ff8c1a;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.clients-badge strong {
  font-size: 16px;
}

.clients-badge small {
  font-size: 12px;
  color: #64748b;
  display: block;
}

/* ===============================
   CONTACT
   =============================== */
.contact-section {
  padding: 100px 0;
  text-align: center;
}

.contact-card {
  max-width: 600px;
  margin: auto;
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  border: 1px solid #e2e8f0;
}

.contact-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  justify-content: center;
}

.icon-circle {
  width: 48px;
  height: 48px;
  background: #ff8c1a;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.address {
  color: #64748b;
  margin-bottom: 22px;
  text-align: center;
  line-height: 1.6;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-box {
  background: #eef2f7;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  text-align: left;
}

.info-box small {
  font-size: 11px;
  color: #64748b;
  display: block;
}

/* ===============================
   CTA
   =============================== */
.cta-section {
  background: #0f2c4d;
  padding: 90px 0;
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
}

.cta-section p {
  max-width: 600px;
  margin: 20px auto 40px;
  color: #cbd5e1;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===============================
   FOOTER
   =============================== */
.footer {
  background: #0b2540;
  color: #cbd5e1;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: center;
}

.logo-icon {
  background: #ff8c1a;
  padding: 8px;
  border-radius: 8px;
  font-weight: bold;
  color: #fff;
}

.footer h5 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 16px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #ff8c1a;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials span {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.socials span:hover {
  background: #ff8c1a;
}

/* ===============================
   SCROLL ANIMATION
   =============================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   RESPONSIVE - TABLET (768px - 1024px)
   =============================== */
@media (max-width: 1024px) {
  .container {
    width: 92%;
  }

  .hero h1 {
    font-size: 46px;
  }

  .section-title {
    font-size: 38px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ===============================
   RESPONSIVE - SMALL TABLET (768px)
   =============================== */
@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    height: 64px;
  }

  .navbar-inner {
    padding: 0 16px;
  }

  .nav-links {
    display: none; /* Hide navigation on mobile - add hamburger menu in HTML/JS */
  }

  .nav-right {
    gap: 16px;
  }

  /* Hero */
  .hero {
    min-height: 70vh;
  }

  .hero-inner {
    min-height: 70vh;
    padding: 60px 5% 40px;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-actions {
    justify-content: center;
  }

  /* Stats */
  .stats {
    padding: 40px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat h2 {
    font-size: 28px;
  }

  /* Products */
  .products-section {
    padding: 60px 0;
  }

  .products-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .bulk-box {
    margin-top: 50px;
    padding: 20px;
  }

  /* Services */
  .services-section {
    padding: 70px 0 40px;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Why Choose Us */
  .why-section {
    padding: 70px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-left {
    max-width: 100%;
  }

  .why-desc {
    max-width: 100%;
  }

  .why-points {
    grid-template-columns: 1fr;
  }

  .clients-badge {
    left: 20px;
    bottom: 20px;
  }

  /* Contact */
  .contact-section {
    padding: 70px 0;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline {
    width: 100%;
    max-width: 280px;
  }

  /* Footer */
  .footer {
    padding: 60px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ===============================
   RESPONSIVE - MOBILE (480px)
   =============================== */
@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 12px;
  }

  /* Logo */
  .logo img {
    height: 150px;
    max-width: 220px;
  }

  /* Hero */
  .hero h1 {
    font-size: 28px;
  }

  .badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .hero p {
    font-size: 14px;
  }

  .btn-primary {
    padding: 10px 18px;
    font-size: 14px;
  }

  /* Stats */
  .stat h2 {
    font-size: 24px;
  }

  .stat p {
    font-size: 13px;
  }

  /* Section Titles */
  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 16px;
  }

  /* Services */
  .service-card {
    padding: 24px;
  }

  .service-card h4 {
    font-size: 16px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    padding: 16px 12px;
  }

  /* CTA */
  .cta-section h2 {
    font-size: 24px;
  }

  .cta-section p {
    font-size: 14px;
  }

  /* Contact */
  .contact-header {
    flex-direction: column;
  }

  .icon-circle {
    width: 44px;
    height: 44px;
  }
}

/* ===============================
   RESPONSIVE - EXTRA SMALL (360px)
   =============================== */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 24px;
  }

  .section-title {
    font-size: 22px;
  }

  .stat h2 {
    font-size: 20px;
  }
}