
/* CSS */
	html {
  scroll-behavior: smooth;
}

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

    body {
      font-family: Figtree;
    }

    .container {
      width: 80%;
      max-width: 1200px;
      margin: 0 auto;
    }

	[lang="en"],
	[lang="id"] {
	  display: none; /* Hide all language-specific content by default */
	}

	.lang-en [lang="en"],
	.lang-id [lang="id"] {
	  display: block; /* Show content for the selected language */
	}

/* NAVIGATION BAR */

    header {
      position: sticky;
      top: 0;
      background-color: white;
      z-index: 1000;
    }

    .navbar-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem;
      max-width: 1200px;
      margin: auto;
      flex-wrap: nowrap;
    }

    .logo {
      font-weight: bold;
      font-size: 1.5rem;
	  max-width: 200px;
	  flex-shrink: 0;
    }

		.navigation-logo {
	  width: 150px;
	  height: auto;
	  display: block;
	}

    .hamburger {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    nav {
		font-size: 12pt;
    }

    nav ul {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    nav ul li a, .dropbtn {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      background: none;
      border: none;
      cursor: pointer;
	  font-size: 12pt;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: white;
      min-width: 145px;
      z-index: 999;
      padding: 0.1rem 0;
    }

    .dropdown-content li {
      padding: 0.5rem 1rem;
	  display: flex;
	  align-items: center; 
	  gap: 0.2rem;
    }

	.dropdown-content li a {
	  display: flex;
	  align-items: center;
	  gap: 0.2rem;
	  color: #333;
	  text-decoration: none;
}

	.dropdown-content img {
	  width: 22px;
	  justify-content: center;
      align-items: center;
	}

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .download-btn {
      background-color: black;
      color: white;
      padding: 0.5rem 1rem;
      display: flex;
      align-items: center;
	  justify-content: center;
      gap: 0.5rem;
      border: none;
      cursor: pointer;
	  max-width: 125px;
	  min-width: 150px;
	  max-height: 30px;
	  font-size: 9pt;
	  text-decoration: none;align-content: 
    }

    .lang-switch {
      display: flex;
      gap: 0.2rem;
	  font-size: 9pt;
    }

    .lang-switch div {
      width: 30px;
      height: 30px;
      border: 1px solid #333;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: black;
      color: white;
      cursor: pointer;
    }

    .floating-bar {
      position: sticky;
      top: 73px;
      height: 15px;
      background-color: white;
      z-index: 999;
    }
	  
	  
    @media (max-width: 960px) {
      .navbar-container {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
      }
		
	  .floating-bar {
      position: sticky;
      top: 120px;
      height: 15px;
      background-color: white;
      z-index: 999;
    }
			
    .gap-spacer {
      height: 10px;
    }

      nav {
        display: none;
        width: 100%;
      }

      nav.active {
        display: block;
      }

      nav ul {
        flex-direction: column;
        gap: 1rem;
        margin-top: 0rem;
      }

      .nav-right {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
        gap: 1rem;
      }

      .download-btn,
      .language-selector {
        flex: 1;
        display: flex;
        justify-content: flex-end;
      }
	  
      .hamburger {
        display: flex;
		padding: 5px;
		border-radius: 5px;
		border: 1px solid black;
      }
    }
	  
	  @media (max-width: 600px) {
  .nav-right {
    flex-direction: row;
    align-items: center;
	  
  }	  
		  
  .download-btn {
    width: 100%;
    justify-content: center;
  }

  .lang-switch {
    justify-content: flex-end;
    width: 100%;
  }
}
/* NAVIGATION BAR END */

/* FOOTER */

 .footer-section {
  background-color: #242325;
  color: white;
  padding: 2rem 5%;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 170px;
  margin-top: 30px;
}

.footer-col {
  flex: 1;
  min-width: 260px;
  margin: 0.5rem;
}

.logo-col {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  max-width: 260px;
  height: auto;
  margin-top: 25px;
  margin-bottom: 25px;
}

.footer-icon-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.1rem;
}

.footer-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer-divider {
  height: 2px;
  background-color: #2B4C64;
  margin: 1rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.9rem;
}

.footer-social a {
  margin-left: 1rem;
}

.footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    height: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 10px;
  }
}
/* FOOTER END */


/* CARROSSERIE */

.logistic-header {
  position: relative;
  width: 100%;
  height: 500px;
  background: url('images/manufacturing/Karoseri (5).png') no-repeat center center/cover;
  z-index: 1;
  margin-top: -30px;
}

.logistic-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.logistic-header-content {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 3;
  color: white;
}

.logistic-header-content h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: normal;
}

.logistic-header-content h1 {
  font-size: 5rem;
  font-weight: bold;
}

.logistic-section {
  position: relative;
  overflow: visible;
  padding: 00px 0;
}

.logistic-decoration {
  position: absolute;
  right: 0;
  top: 0;
  max-height: 600px;
  margin-top: 30px;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
  overflow: visible;
}

.logistic-content {
  position: relative;
  z-index: 1;
  padding: 75px 0;
  margin: 0 auto;
}

.logistic-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.logistic-description {
  font-size: 1.3rem;
  color: #333;
  max-width: 1080px;
  margin-bottom: 50px;
}

.logistic-core-section {
  background-color: #222124;
  padding: 50px 0;
  height: 350px;
  color: white;
  text-align: center;
}

.logistic-core-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.logistic-core-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.logistic-core-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
}

.logistic-core-item {
  flex: 1 1 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logistic-core-item img {
  margin-bottom: 1rem;
  max-width: 130px;
  height: auto;
}

.logistic-core-item p {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 868px) {
  .logistic-core-section {
    height: 460px;
    padding: 3rem 0;
  }
}
@media (max-width: 768px) {
  .logistic-core-section {
    height: auto;
    padding: 3rem 0;
  }

  .logistic-core-wrapper {
    flex-direction: column;
  }

  .logistic-core-item {
    flex: 1 1 100%;
  }
}

/* COVERAGE SECTION */

.coverage-section {
  background-color: white;
  padding: 50px 0;
}

.coverage-map-container img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1500px;
  margin: 0 auto;
}

.coverage-area-list {
  margin-top: 50px;
  text-align: center;
}

.coverage-title {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 40px;
}

.coverage-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.coverage-column {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  align-items: stretch; /* not center or flex-start */
}

.island-box {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  margin-bottom: 20px;
  width: 100%;
  text-align: left;
  font-size: 1.2rem;
}

.city-list {
  column-count: 2;
  column-gap: 2rem;
  width: 100%;
  height: 180px;
  margin-left: 20px;
}

.city-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  break-inside: avoid;
  text-align: left;
}

.city-list li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .city-list ul {
    flex: 1 1 100%;
  }
}

/* Responsive Handling */
@media (max-width: 992px) {
  .coverage-columns {
    flex-direction: column;
    align-items: center;
  }

  .coverage-column {
    width: 100%;
  }
}



.logistics-products-section {
  background-color: #222124;
  color: white;
  padding: 75px 0;
}

.logistics-products-title {
  font-size: 2rem;
  margin-bottom: 50px;
  font-weight: bold;
  text-align: left;
}

.logistics-product-items {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.logistics-product-item {
  flex: 1 1 45%;
  text-align: left;
}

.logistics-product-item h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

#reefer-trucks,
#refrigerator-type {
  scroll-margin-top: 100px;
}

@media (max-width: 768px) {
  .logistics-product-items {
    flex-direction: column;
    gap: 60px;
  }

  .logistics-product-item {
    flex: 1 1 100%;
  }
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 250px;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-img-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-img-wrapper:hover .overlay {
  opacity: 1;
}

@media (max-width: 768px) {
    .logistics-product-items {
    flex-direction: column;
    gap: 60px;
  }

  .logistics-product-item {
    flex: 1 1 100%;
  }
}


/* SLIDER SECTION */
.truck-slider-section {
  background-color: #f5f5f5;
  padding: 80px 0;
  text-align: center;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* smoother ease */
}

.slide {
  width: 500px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0.6;
  transform: scale(0.9);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slide-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 300px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0.8;
  transition: opacity 0.6s ease;
  z-index: 2;
}

.slide.active .overlay {
  opacity: 0;
  pointer-events: none;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #000;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
}

.left-arrow {
  left: calc(50% - 280px);
}

.right-arrow {
right: calc(50% - 280px);
}

.truck-description {
  margin-top: 30px;
}

.truck-name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.truck-capacity {
  font-size: 1.2rem;
}

@media (max-width: 768px) {

  .slider-container {
    flex-direction: column;
    height: auto;
  }

  .slide {
    display: block;
  }

  .slide.active {
    display: block;
    width: 100%;
    opacity: 1;
    transform: scale(1);
  }

  .arrow {
    display: block;
  }
	
	.left-arrow {
	 left: 10px;
	}
	
	.right-arrow {
	  right: 10px;
	}
	
}

@media (max-width: 550px) {
	.left-arrow {
	   left: 10px;
	}

	.right-arrow {
	  right: 10px;
	}
}

