@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
  text-decoration: none;
}

html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

button.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  background: #088178;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

button.normal:hover {
  background: #06685f;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(8, 129, 120, 0.3);
}

button.white {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  padding: 11px 18px;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid #fff;
  outline: none;
  transition: 0.2s;
}

body {
  width: 100%;
}

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background: #e3e6f3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #088178;
}

#navbar li a:hover::after,
#navbar li a.active::after {
  content: "";
  width: 30%;
  height: 2px;
  background: #088178;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

#mobile {
  display: none;
  align-items: center;
}

#close {
  display: none;
}

.Logo-header {
  width: 160px;
  height: auto;
  display: block;
  position: absolute;
  left: 150px;
  top: 15px;
}

#first-page {
  background-image: url("./img/bg-img.jpg");
  background-size: cover;
  height: 90vh;
  width: 100%;
  background-position: top 25% right 0;
  padding: 0 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  
}

#first-page h4 {
  padding-bottom: 15px;
}

#first-page h1 {
  color: #088178;
}

#first-page button {
  background-image: url("img/button.png");
  background-color: transparent;
  color: #088178;
  border: 0;
  padding: 14px 65px;
  background-repeat: no-repeat;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
}

.feature-p1 {
  text-align: center;
  padding: 40px 40px;
  flex-direction: row;
  display: flex;
  gap: 70px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.fe-box {
  background-color: #f9f6ee;
  border-radius: 5px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
  padding: 10px;
  width: 140px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.fe-box h6 {
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  margin-top: 8px;
  font-weight: 600;
}

.h61 {
  background-color: #ffddc1;
  color: #e63946;
}
.h62 {
  background-color: #c1ffd7;
  color: #1d3557;
}
.h63 {
  background-color: #fffac1;
  color: #2a9d8f;
}
.h64 {
  background-color: #e5c1ff;
  color: #9d4edd;
}
.h65 {
  background-color: #c1e1ff;
  color: #457b9d;
}
.h66 {
  background-color: #ffd6c1;
  color: #6d6875;
}

.fe-box:hover {
  transform: scale(1.1);
}

.fe-box img {
  width: auto;
  height: 60px;
}

#product1 {
  text-align: center;
  padding: 40px 60px;
}

#product1 .pro-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

#product1 .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
  position: relative;
  background-color: #fff;
}

#product1 .pro img.shirt {
  width: 100%;
  border-radius: 20px;
}

#product1 .pro:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: scale(1.05);
}

#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .des span {
  color: #606063;
  font-size: 12px;
}

#product1 .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}

#product1 .pro .des i {
  font-size: 12px;
  color: rgb(243, 181, 25);
}

#product1 .pro .des h4 {
  padding-top: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #088178;
}

#product1 .pro .cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #e8f6ea;
  font-weight: 500;
  color: #088178;
  border: 1px solid #cce7d0;
  position: absolute;
  bottom: 20px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#product1 .pro .cart:hover {
  background-color: #088178;
  color: #fff;
}

/* 🌐 RESPONSIVE */

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
  #product1 {
    padding: 30px 40px;
  }

  #product1 .pro {
    width: 45%;
    min-width: unset;
  }
}

/* HP (≤ 600px) */
@media (max-width: 600px) {
  #product1 {
    padding: 20px;
  }

  #product1 .pro-container {
    flex-direction: column;
    align-items: center;
  }

  #product1 .pro {
    width: 90%;
  }

  #product1 .pro img.shirt {
    border-radius: 15px;
  }

  #product1 .pro .des h5 {
    font-size: 13px;
  }

  #product1 .pro .des h4 {
    font-size: 12px;
  }

  #product1 .pro .cart {
    width: 35px;
    height: 35px;
    bottom: 15px;
    right: 10px;
  }
}

#banner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("./img/banner/b2.jpg");
  background-size: cover;
  background-position: center;
  padding: 70px;
  position: relative;
}

.banner-content {
  color: white;
}

.banner-content .small-text {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.9;
}

#banner h4 {
  color: #fff;
  font-size: 20px;
  margin: 0;
  text-align: center;
  margin-bottom: 20px;
  position: absolute;
  top: 40px;
}

#banner h2 {
  color: #fff;
  font-size: 25px;
  margin: 0;
  text-align: center;
}

#banner h2 span {
  color: #ef3636;
}

#banner button {
  background-color: #088178;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

#banner .normal:hover {
  background-color: #088178;
  color: #fff;
}

.deals {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding: 70px;
  position: relative;
}

#crazy-deals {
  background-image: url("./img/banner/b17.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 35%;
  height: 400px;
  padding: 20px 10px;
  margin-left: 5rem;
  margin-bottom: 50px;
}

#crazy-deals h5,
h3 {
  color: #fff;
  font-size: 20px;
  margin: 0;
  text-align: left;
  margin-bottom: 15px;
}

#deals-crazy {
  position: relative;
  top: 6rem;
  margin-left: 30px;
}

#deals-crazy p {
  color: #fff;
  font-size: 12px;
  margin: 0;
  text-align: left;
  margin-bottom: 20px;
}

#deals-crazy h3 {
  color: #fff;
  font-size: 30px;
  margin: 0;
  text-align: left;
  margin-bottom: 10px;
  margin-top: 10px;
}

#deals-crazy h5 {
  color: #fff;
  font-size: 20px;
  margin: 0;
  text-align: left;
  font-weight: lighter;
}

.Upcoming-season {
  background-image: url("./img/banner/b10.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 400px;
  padding: 20px 10px;
  margin-left: 5rem;
  margin-bottom: 50px;
  position: relative;
  left: 45rem;
  bottom: 11.2rem;
}

.Upcoming-season h5 {
  color: #fff;
  font-weight: lighter;
  font-size: 10px;
  margin: 0;
  text-align: left;
  margin-bottom: 15px;
}

.season {
  position: relative;
  top: 6rem;
  left: 2rem;
}

.season p {
  color: white;
}

#sm-banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
}

#sm-banner .banner-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  background-image: url("./img/banner/b17.jpg");
  min-width: 600px;
  height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
  border-radius: 10px;
  transition: 0.3s ease;
}

#sm-banner .banner-box2 {
  background-image: url("./img/banner/b10.jpg");
}

#sm-banner h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

#sm-banner h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

#sm-banner span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 15px;
}

#sm-banner .banner-box:hover button {
  background-color: #088178;
  border: 1px solid #088178;
}

/* 🌐 RESPONSIVE DESIGN */

/* Untuk layar tablet (<= 992px) */
@media (max-width: 992px) {
  #sm-banner {
    justify-content: center;
  }

  #sm-banner .banner-box {
    min-width: 80%;
    height: 40vh;
    margin-bottom: 20px;
  }

  #sm-banner h2 {
    font-size: 24px;
  }

  #sm-banner h4 {
    font-size: 18px;
  }
}

/* Untuk layar HP (<= 600px) */
@media (max-width: 600px) {
  #sm-banner {
    flex-direction: column;
    align-items: center;
  }

  #sm-banner .banner-box {
    width: 100%;
    min-width: 100%;
    height: 35vh;
    padding: 20px;
  }

  #sm-banner h2 {
    font-size: 20px;
  }

  #sm-banner h4 {
    font-size: 16px;
  }

  #sm-banner span {
    font-size: 12px;
  }

  #sm-banner .white {
    padding: 8px 15px;
    font-size: 13px;
  }
}


#banner3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 80px;
  gap: 20px;
}

#banner3 .banner-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  background-image: url("./img/banner/b7.jpg");
  min-width: 30%;
  height: 30vh;
  background-size: cover;
  background-position: center;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
#banner3 .banner-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

#banner3 .banner-box2 {
  background-image: url("./img/banner/b4.jpg");
}

#banner3 .banner-box3 {
  background-image: url("./img/banner/b18.jpg");
}

#banner3 h2 {
  color: #fff;
  font-weight: 900;
  font-size: 22px;
}

#banner3 h3 {
  color: #ec544e;
  font-weight: 800;
  font-size: 15px;
}

/* 🌐 RESPONSIVE */

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
  #banner3 {
    justify-content: center;
    padding: 0 40px;
  }

  #banner3 .banner-box {
    min-width: 45%;
    height: 25vh;
  }

  #banner3 h2 {
    font-size: 20px;
  }

  #banner3 h3 {
    font-size: 14px;
  }
}

/* HP (≤ 600px) */
@media (max-width: 600px) {
  #banner3 {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  #banner3 .banner-box {
    width: 100%;
    min-width: 100%;
    height: 25vh;
  }

  #banner3 h2 {
    font-size: 18px;
  }

  #banner3 h3 {
    font-size: 13px;
  }
}


#newsletter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-image: url("./img/banner/b14.png");
  background-repeat: no-repeat;
  background-position: 20% 30%;
  background-color: #041e42;
}

#newsletter h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

#newsletter p {
  font-size: 14px;
  font-weight: 600;
  color: #818ea0;
}

#newsletter span {
  color: #ffbd27;
}

#newsletter .form {
  display: flex;
  width: 40%;
}

#newsletter input {
  height: 3.125rem;
  padding: 0 1.25em;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#newsletter button {
  background-color: #088178;
  color: #fff;
  white-space: nowrap;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

footer .logo {
  width: 160px;
  height: auto;
  margin-bottom: 30px;
}

footer h4 {
  font-size: 14px;
  padding-bottom: 20px;
}

footer p {
  font-size: 13px;
  margin: 0 0 8px 0;
}

footer a {
  font-size: 13px;
  text-decoration: none;
  color: #222;
  margin-bottom: 10px;
}

footer .follow {
  margin-top: 20px;
}

footer .follow i {
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}

footer .follow h4 {
  padding-bottom: 10px;
}

footer .install .row img {
  border: 1px solid #088178;
  border-radius: 6px;
}

footer .install img {
  margin: 10px 0 15px 0;
  cursor: pointer;
}

footer .follow i:hover,
footer a:hover {
  color: #088178;
}

footer .copyright {
  width: 100%;
  text-align: center;
}

#banner-shop {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("./img/banner/b1.jpg");
  background-size: cover;
  background-position: center;
  padding: 115px;
  position: relative;
}

#banner-shop h4 {
  color: #fff;
  font-size: 40px;
  margin: 0;
  text-align: center;
  margin-bottom: 20px;
  position: absolute;
  top: 80px;
}

#banner-shop h2 {
  color: #fff;
  font-size: 15px;
  margin: 0;
  font-weight: 100;
  text-align: center;
  position: relative;
  bottom: 10px;
}

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.page-btn {
  width: 40px;
  height: 40px;
  background-color: #007b5e;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-btn:hover {
  background-color: #00644c;
  transform: translateY(-2px);
}

.page-btn.active {
  background-color: #005a43;
}

.page-btn.next {
  width: 40px;
  height: 40px;
  background-color: #007b5e;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-btn.next:hover {
  background-color: #00644c;
  transform: translateY(-2px);
}
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.page-btn {
  width: 40px;
  height: 40px;
  background-color: #007b5e;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-btn:hover {
  background-color: #00644c;
  transform: translateY(-2px);
}

.page-btn.active {
  background-color: #005a43;
}

.page-btn.next {
  width: 40px;
  height: 40px;
  background-color: #007b5e;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-btn.next:hover {
  background-color: #00644c;
  transform: translateY(-2px);
}

/* ===== BLOG HEADER ===== */
#page-header.blog-header {
  background-image: url("./img/banner/b19.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

#page-header.blog-header h2 {
  font-size: 48px;
  letter-spacing: 1px;
}

#page-header.blog-header p {
  font-size: 16px;
  opacity: 0.9;
  margin-top: 10px;
}

/* ===== BLOG SECTION ===== */
#blog {
  padding: 100px 150px 0 150px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.blog-box {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

.blog-img {
  flex: 1;
}

.blog-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.blog-details {
  flex: 1;
}

.blog-details h4 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.blog-details p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-details a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: #088178;
  position: relative;
  transition: 0.3s;
}

.blog-details a::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 110%;
  width: 40px;
  height: 2px;
  background: #088178;
  transition: 0.3s;
}

.blog-details a:hover {
  color: #00c38b;
}

.blog-details a:hover::after {
  background: #00c38b;
  width: 60px;
}

.blog-box h1 {
  position: absolute;
  top: -40px;
  left: 0;
  font-size: 70px;
  font-weight: 700;
  color: #e0e0e0;
  z-index: -1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  #blog {
    padding: 80px 60px 0 60px;
  }

  .blog-box {
    flex-direction: column;
    text-align: center;
  }

  .blog-img img {
    height: 250px;
  }

  .blog-details {
    width: 100%;
  }

  .blog-details p {
    font-size: 15px;
  }

  .blog-box h1 {
    font-size: 50px;
    top: -20px;
  }
}

@media (max-width: 576px) {
  #blog {
    padding: 60px 30px 0 30px;
    gap: 80px;
  }

  .blog-details h4 {
    font-size: 18px;
  }

  .blog-details p {
    font-size: 14px;
  }

  .blog-details a {
    font-size: 12px;
  }

  .blog-img img {
    height: 200px;
  }
}


#navbar-about {
  list-style: none;
  display: flex;
  align-items: center;
}

#navbar-about li {
  margin: 0 15px;
}

#navbar-about a {
  color: black;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 4px;
}

#header.scrolled a {
  color: #333;
}

#navbar-about a:hover {
  color: #016c34;
}

#header.scrolled a:hover {
  color: #016c34;
}

#navbar-about .active {
  color: #016c34;
  font-weight: bold;
}

#navbar-about #lg-bag a {
  font-size: 1.2rem;
}

#navbar-about #close {
  display: none;
  font-size: 1.5rem;
  margin-left: 20px;
}

#header.scrolled #close i {
  color: #333;
}

#mobile {
  display: none;
  align-items: center;
}

#mobile i {
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  margin-left: 15px;
}

#header.scrolled #mobile i {
  color: #333;
}

.about-p1 h1 {
  color: #016c34;
  text-align: center;
  margin: 0;
  padding: 0;
  font-size: 3.5rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-p1 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(11.9px);
  -webkit-backdrop-filter: blur(11.9px);
  border: 1px solid rgba(255, 255, 255, 0.44);
  background-image: url("./img/backgroundkdkd.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}


.about-p2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 80px 0;
}

.about-p2 h5,
.about-p2 h4,
.about-p2 p {
  /* Menghapus positioning kaku */
  position: static;
  top: auto;
  left: auto;
  max-width: 900px; /* Membatasi lebar teks agar mudah dibaca */
}

.about-p2 h5 {
  font-size: 22px;
  color: #016c34;
  margin-bottom: 15px;
}

.about-p2 h4 {
  font-size: 34px;
  color: #333;
  margin-bottom: 20px;
}

.about-p2 p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}

#indonesia {
  /* Menghapus positioning kaku */
  position: static;
  top: auto;
  background-size: contain; /* Agar gambar tidak terpotong */
  width: 100%;
  max-width: 800px; /* Batasi lebar maksimum gambar */
  min-height: 400px;
  padding: 0;
}

.about-p3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 0 80px 80px;
  overflow: hidden;
  margin-bottom: 80px;
}

/* Kolom Teks (Kiri) */
#misi {
  flex-basis: 45%; /* Lebar kolom teks */
  max-width: 500px;
}

#misi h5,
#misi h3,
#misi p {
  /* Menghapus positioning kaku */
  position: static;
  top: auto;
  left: auto;
  text-align: left; /* Teks rata kiri */
  max-width: 100%;
}

#misi h5 {
  font-size: 22px;
  color: #016c34;
  margin-bottom: 15px;
}

#misi h3 {
  font-size: 35px;
  color: #333;
  line-height: 1.3;
  margin-bottom: 20px;
}

#misi p {
  font-size: 16px;
  line-height: 1.6;
}

/* Kolom Gambar (Kanan) - Membuat ulang efek tumpukan */
#misi-img {
  flex-basis: 55%; /* Lebar kolom gambar */
  position: relative; /* Menjadi 'kanvas' untuk gambar di dalamnya */
  min-height: 500px;
}

#misi-img img {
  /* Menghapus positioning kaku */
  position: absolute;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

#misi-img img:hover {
  transform: scale(1.05);
  z-index: 10;
}

/* Posisi baru untuk setiap gambar di dalam 'kanvas' #misi-img */
#misi-img .b43 {
  width: 70%;
  max-width: 500px;
  top: 0;
  right: 0;
  z-index: 3;
}
#misi-img .b42 {
  width: 50%;
  max-width: 300px;
  top: 150px;
  left: 0;
  z-index: 2;
}
#misi-img .b41 {
  width: 60%;
  max-width: 400px;
  bottom: 0;
  left: 20%;
  z-index: 1;
}

.about-p4 {
  background-color: rgba(128, 128, 128, 0.2);
  width: 95%;
  height: 700px;
  border-radius: 20px;
  margin: 0 auto;
  margin-bottom: 200px;
}

.bisnis-kami h5 {
  color: #016c34;
  position: relative;
  left: 8rem;
  top: 5rem;
  font-size: large;
}

.bisnis-kami h1 {
  max-width: 550px;
  position: relative;
  top: 7rem;
  left: 7.5rem;
}

.bisnis-kami-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  bottom: 13rem;
  left: 20rem;
  margin-bottom: 50px;
}

#garis {
  border-bottom: 1px solid gray;
  padding-bottom: 4px;
  display: flex;
  gap: 30px;
}

.bisnis-kami-text .bisnis-kami-box h3 {
  color: black;
  font-size: 42px;
}

.bisnis-kami-text .bisnis-kami-box span {
  color: #088178;
  font-weight: bold;
  font-size: 24px;
  position: relative;
  bottom: 25px;
}

#p-bisnis-2 {
  font-size: 13.6px;
}

#p-bisnis-3 {
  font-size: 13px;
  max-width: 200px;
}

.about-p5 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-position: center;
  padding: 70px;
  position: relative;
}

.about-p5 h5 {
  color: #016c34;
  margin-bottom: 40px;
}

.about-p5 h1 {
  color: #333;
  font-size: 40px;
  margin: 0;
  text-align: center;
  margin-bottom: 50px;
}

.about-p5-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.about-p5-card h3 {
  color: #333;
  font-size: 18px;
  margin: 10px 0;
  text-align: center;
}

.about-p5-card p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin: 10px 0;
  text-align: left;
  position: relative;
  top: 30px;
}

.about-p5-card-box {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  width: 300px;
  height: 400px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

#last-p-p5 {
  font-size: 14px;
}

.about-p5-card-box:hover {
  transform: translateY(-10px);
}
.about-p5-card-box i {
  border: 1px solid gray;
  border-radius: 50%;
  font-size: 36px;
  padding: 1rem;
}

.about-p6 {
  margin-bottom: 200px;
}

.about-p6-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.about-p6-cover {
  background-color: rgb(13, 10, 10);
  width: 95%;
  height: 900px;
  border-radius: 20px;
  margin: 0 auto;
}

.about-p6-text h5 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  top: 100px;
  color: #00bf5c;
}

.about-p6-text h1 {
  position: relative;
  top: 120px;
  left: 6.2rem;
  color: white;
  font-size: 36px;
  margin: 0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 1200px;
}

.about-p6-card-box {
  background-color: #33363f;
  border-radius: 20px;
  width: 350px;
  height: 150px;
  position: relative;
  transition: transform 0.3s ease-in-out;
  top: 7rem;
}

.award-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 25px;
  left: 20px;
}

.award-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-p6-card-box h5 {
  color: gray;
  font-size: 18px;
  margin: 10px 0;
  text-align: center;
  position: relative;
  bottom: 70px;
}

.about-p6-card-box p {
  max-width: 200px;
  font-weight: bold;
  color: white;
  position: relative;
  bottom: 70px;
  text-align: left;
  left: 150px;
  font-size: 12px;
}

#about-p6-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  top: 32rem;
  font-size: 16px;
  color: #b7b7b7;
}

#span-footer-p6 {
  color: #00bf5c;
  font-weight: bold;
}

.about-p6-card-box:hover {
  transform: translateY(-10px);
}

/* =============================== */
/* 📱 RESPONSIVE STYLE */
/* =============================== */

/* Untuk layar besar sedang (max 1200px) */
@media (max-width: 1200px) {
  .about-p3 {
    gap: 40px;
    padding: 0 40px 60px;
  }

  .bisnis-kami-text {
    left: 10rem;
  }

  .about-p6-text h1 {
    left: 0;
    font-size: 30px;
  }
}

/* Untuk tablet (max 992px) */
@media (max-width: 992px) {
  .about-p1 h1 {
    font-size: 2.8rem;
  }

  .about-p2 {
    padding: 60px 40px;
  }

  .about-p3 {
    flex-direction: column;
    text-align: center;
  }

  #misi {
    max-width: 100%;
    text-align: center;
  }

  #misi-img {
    min-height: 350px;
    width: 100%;
  }

  .about-p4 {
    height: auto;
    padding: 60px 20px;
  }

  .bisnis-kami h5,
  .bisnis-kami h1 {
    left: 0;
    top: 0;
    text-align: center;
  }

  .bisnis-kami-text {
    left: 0;
    bottom: 0;
    flex-direction: column;
  }

  .about-p5 h1 {
    font-size: 32px;
  }

  .about-p6-cover {
    height: auto;
    padding: 50px 20px;
  }

  .about-p6-text h1 {
    font-size: 28px;
    left: 0;
  }
}

/* Untuk HP (max 768px) */
@media (max-width: 768px) {
  .about-p1 h1 {
    font-size: 2.2rem;
    padding: 0 20px;
  }

  .about-p2 h4 {
    font-size: 26px;
  }

  .about-p3 {
    padding: 0 20px 40px;
  }

  .about-p4 {
    width: 100%;
    border-radius: 10px;
  }

  .bisnis-kami h1 {
    font-size: 24px;
  }

  .bisnis-kami-box h3 {
    font-size: 30px;
  }

  .bisnis-kami-text {
    flex-direction: column;
    gap: 15px;
  }

  .about-p5 {
    padding: 40px 20px;
  }

  .about-p5-card-box {
    width: 100%;
    height: auto;
  }

  .about-p6-text h1 {
    font-size: 24px;
  }

  .about-p6-card {
    flex-direction: column;
    gap: 20px;
  }

  .about-p6-card-box {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .about-p6-card-box p {
    left: 0;
    text-align: center;
  }

  #about-p6-footer {
    flex-direction: column;
    top: 4rem;
  }
}

/* Untuk layar kecil banget (max 480px) */
@media (max-width: 480px) {
  .about-p1 h1 {
    font-size: 1.8rem;
  }

  .about-p2 {
    padding: 40px 20px;
  }

  .about-p2 h4 {
    font-size: 22px;
  }

  #misi h3 {
    font-size: 24px;
  }

  .about-p5 h1 {
    font-size: 22px;
  }

  .about-p6-text h5 {
    font-size: 14px;
  }

  .about-p6-text h1 {
    font-size: 20px;
  }

  .about-p6-card-box p {
    font-size: 11px;
  }
}


#body-bisnis-kami {
  background-color: black;
}

.bisnis-kami-p1 {
  background-color: black;
  margin-bottom: 200px;
  padding: 100px 0;
}

.bisnis-kami-p1 h1 {
  color: white;
  text-align: center;
  padding: 50px 0;
}

.bisnis-kami-p1 p {
  color: white;
  text-align: center;
  font-size: 16px;
  padding: 0 10px;
  position: relative;
  bottom: 30px;
  max-width: 950px;
  margin: 0 auto;
}

.bisnis-kami-box-p2 h1 {
  color: black;
  font-size: 32px;
  position: relative;
  top: 2rem;
  align-items: center;
  text-align: center;
}

.bisnis-kami-box-p2 p {
  color: #333;
  font-size: 16px;
  position: relative;
  top: 3rem;
  text-align: center;

  margin: 0 auto;
}

.bisnis-kami-box-p2 {
  background-color: white;
  width: 100%;
  height: 1300px;
  border-radius: 60px;
  margin: 0 auto;
  position: relative;
  bottom: 10rem;
}

.bisnis-kami-box-p2-card-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 10rem;
  grid-template-columns: repeat(3, 1fr);
}

.bisnis-kami-box-p2-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 300px;
  min-height: 450px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.bisnis-kami-box-p2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.bisnis-kami-box-p2-card i {
  font-size: 36px;
  color: #009e42;
  margin-bottom: 15px;
}

.bisnis-kami-box-p2-card h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.bisnis-kami-box-p2-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: -30px 0;
  text-align: left;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bisnis-kami-box-p2-card a {
  font-size: 12px;
  color: #088178;
  text-decoration: none;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.bisnis-kami-box-p2-card a:hover {
  color: #009e42;
  text-decoration: underline;
}

.solusi-logistic-box img {
  width: 700px;
  height: auto;
  border-radius: 10px;
  position: relative;
  left: 4rem;
}

.solusi-logistic {
  background: white;
  width: 100%;
  min-height: 900px;
  padding: 200px 0;
  position: relative;
}

.solusi-logistic-box h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  bottom: 40rem;
  max-width: 700px;
  align-items: center;
  position: relative;
  left: 50rem;
  text-align: left;
}

.solusi-logistic-box p {
  max-width: 550px;
  position: relative;
  bottom: 40rem;
  font-size: 16px;
  color: #555;
  text-align: left;
  left: 50rem;
}

.solusi-logistic h5 {
  text-align: center;
  font-size: 18px;
  color: gray;
  position: relative;
  bottom: 40rem;
  left: 20rem;
  font-weight: 500;
}

h2 {
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
  font-size: 28px;
}

.benefit-text {
  flex: 1;
  font-size: 16px;
  color: #2c3e50;
  text-align: justify;
}

.benefit-text {
  font-size: 15px;
}

.perluas-jangkauan {
  flex: 1;
  padding-left: 30px;
  background-color: white;
  margin-bottom: 10px;
}

.text-section {
  flex: 1;
  padding-right: 30px;
}

.text-section h1 {
  font-size: 2rem;
  font-weight: 700;
  color: black;
  margin-bottom: 25px;
  line-height: 1.2;
  max-width: 750px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list {
  position: relative;
  left: 50rem;
  bottom: 37rem;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.benefit-list span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: #4caf50;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 12px;
  flex-shrink: 0;
}

.benefit-text {
  display: inline-block;
  background: #f5f5f5;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid gray;
  max-width: 600px;
}

.text-section h1 {
  position: relative;
  left: 3rem;
  bottom: 5rem;
  max-width: 500px;
}

.text-section p {
  position: relative;
  left: 3rem;
  bottom: 5rem;
  max-width: 500px;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.image-section img {
  width: 40%;
  height: auto;
  position: relative;
  left: 45rem;
  bottom: 45rem;
}

.section-p2 {
  padding: 40px 80px;
  background-color: white;
}

.hero {
  background: linear-gradient(135deg, #00a650 0%, #016c34 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://placehold.co/100x100/7C3AED/FFFFFF?text=●") repeat;
  opacity: 0.1;
  background-size: 50px;
  transform: rotate(45deg);
  z-index: 0;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
  left: 5rem;
  color: white;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  position: relative;
  left: 5rem;
  color: black;
}

.cta-button {
  background: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  left: 5rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image video {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.5s ease;
}

.hero-image video:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.benefits {
  padding: 100px 0;
  background-color: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #333;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #eee;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 120px; /* Diperbesar dari 80px */
  height: 120px; /* Diperbesar dari 80px */
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #016c34 0%, #016c34 100%);
}

.benefit-icon i {
  font-size: 48px; /* Ukuran icon lebih besar untuk mengisi container */
  color: white;
}

.benefit-card h3 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #333;
  text-align: center;
}

.benefit-card p {
  color: #666;
  font-size: 1rem;
}

.how-it-works {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  flex: 1;
  min-width: 250px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #eee;
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 40px;
  height: 2px;

  z-index: -1;
}

.step:last-child::before {
  display: none;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #016c34 0%, #527865 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
  position: relative;

  text-align: center;
}

.step p {
  color: #666;
  font-size: 1rem;
}

.testimonials {
  padding: 100px 0;
  background-color: white;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  display: none;
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-content {
  margin-bottom: 30px;
}

.testimonial-content p {
  font-size: 1.2rem;
  font-style: italic;
  color: #555;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-author i {
  font-size: 60px; /* Diperbesar dari 60px jika diperlukan, tapi sesuai dengan img sebelumnya */
  color: #ccc;
  border-radius: 50%;
}

.author-info h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 5px;
}

.author-info p {
  color: #666;
  font-size: 0.9rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border: none;
  background: #016c34;
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #008a43;
  transform: scale(1.1);
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #008a43 0%, #016c34 100%);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  color: black;
}

.cta-large {
  padding: 20px 40px;
  font-size: 1.3rem;
  min-width: 300px;
  position: relative;
  left: 0rem;
}

#page-header.contact-header {
  background-image: url("./img/banner/b1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  width: 100%;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 14px;
  position: relative;
  overflow: hidden;

  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

#page-header.contact-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(8, 129, 120, 0.7),
    rgba(4, 30, 66, 0.7)
  );
  z-index: 1;
}

#page-header h2,
#page-header p {
  color: #fff;
  position: relative;
  z-index: 2;
}

#page-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);

  animation: slideInDown 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#page-header p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);

  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
  animation-fill-mode: backwards;
}

#contact-details {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  background: #fdfdfd;
}

#contact-details .details {
  width: 45%;
  animation: slideInLeft 1s ease-out;
}

#contact-details .details span {
  font-size: 14px;
  font-weight: 700;
  color: #088178;
  text-transform: uppercase;
}

#contact-details .details h2 {
  font-size: 32px;
  line-height: 1.3;
  margin: 15px 0 20px 0;
}

#contact-details .details h3 {
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 700;
  border-left: 4px solid #088178;
  padding-left: 15px;
}

#contact-details .details ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contact-details .details li {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

#contact-details .details li:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  background: #fff;
}

#contact-details .details li i {
  font-size: 24px;
  color: #088178;
  margin-right: 20px;
}

#contact-details .details li p {
  margin: 0;
  font-size: 15px;
  color: #465b52;
}

#contact-details .map {
  width: 55%;
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  animation: slideInRight 1s ease-out;
}

#contact-details .map iframe {
  width: 100%;
  height: 100%;
  border: none;
  transition: transform 0.4s ease;
}

#contact-details .map:hover iframe {
  transform: scale(1.05);
}

#form-details {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin: 80px 40px;
  padding: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #e1e1e1;
  animation: fadeInUp 1.2s ease-out 0.3s;
  animation-fill-mode: backwards;
}

#form-details form {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#form-details form span {
  font-size: 14px;
  font-weight: 700;
  color: #088178;
  text-transform: uppercase;
}

#form-details form h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

#form-details form input,
#form-details form textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid #ced4da;
  outline: none;
  transition: all 0.3s ease;
  font-size: 16px;
  background: #fff;
}

#form-details form input:focus,
#form-details form textarea:focus {
  border-color: #088178;
  box-shadow: 0 0 12px rgba(8, 129, 120, 0.25);
}

#form-details form button.normal:hover {
  box-shadow: 0 10px 25px rgba(8, 129, 120, 0.4);
}

#form-details .people {
  width: 33%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#form-details .people div {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-out;
}

#form-details .people div:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

#form-details .people div img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 20px;
  border: 3px solid #e9ecef;
}

#form-details .people div p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #465b52;
}

#form-details .people div p span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========== Cart Page ========== */
#cart-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

/* Daftar Item Keranjang (Kiri) */
.cart-items {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e2e9e1;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-5px);
}

.cart-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-details h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-details span {
    font-size: 14px;
    color: #555;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: right;
}

.cart-item-actions .item-price {
    font-weight: 700;
    font-size: 16px;
    width: 100px;
}

.cart-item-actions .remove-item {
    font-size: 24px;
    color: #ef3636;
    cursor: pointer;
    transition: color 0.3s;
}
.cart-item-actions .remove-item:hover {
    color: #c00;
}

/* Ringkasan Belanja (Kanan) */
#cart-summary {
    width: 30%;
    background: #f8f9fa;
    border: 1px solid #e2e9e1;
    border-radius: 12px;
    padding: 30px;
    height: fit-content; /* Agar tinggi sesuai konten */
}

#cart-summary h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

#cart-summary .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
}

#cart-summary .summary-row.total {
    font-size: 18px;
    margin-top: 10px;
}

#cart-summary hr {
    border: 0;
    border-top: 1px solid #d4d8d5;
    margin: 20px 0;
}

#cart-summary #checkout-btn {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    font-size: 16px;
}

/* Modal Pembayaran */
.success-icon {
    font-size: 80px;
    color: #088178;
    margin-bottom: 15px;
}

#add-to-cart-modal .modal-content {
    text-align: center;
}

#add-to-cart-modal p {
    font-size: 16px;
    color: #465b52;
}

#add-to-cart-modal .continue-shopping-btn {
    margin-right: 10px;
    background-color: #fff;
    color: #088178;
    border: 1px solid #088178;
}

#add-to-cart-modal .view-cart-link {
    text-decoration: none;
    font-weight: 600;
    color: #465b52;
}

.cart-item .quantity-control {
    display: flex;
    align-items: center;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    width: fit-content;
}

.cart-item .quantity-btn {
    background-color: #088178;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cart-item .quantity-btn:hover {
    background-color: #06665e;
}

.cart-item .quantity-value {
    width: 50px;
    text-align: center;
    border: none;
    background-color: white;
    font-size: 16px;
    padding: 8px 0;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}
.modal-overlay.show .modal-content {
    transform: translateY(0);
}


.modal-content .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 25px 0;
    gap: 15px;
}

.payment-options label {
    font-size: 16px;
    cursor: pointer;
}

.modal-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    padding-top: 15px;
    border-top: 1px solid #e2e9e1;
}

#pay-now-btn {
    width: 100%;
    margin-top: 25px;
    padding: 15px;
}

/* Gaya untuk Input Pembayaran Dinamis */
.payment-details {
    display: none; /* Sembunyi secara default */
    width: 100%;
    padding-left: 25px; /* Sejajar dengan teks radio button */
    margin: 10px 0;
    animation: slideDown 0.3s ease;
}

.payment-details.active {
    display: block; /* Tampil saat aktif */
}

.payment-details input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.error-message {
    color: #ef3636;
    font-size: 14px;
    margin-top: 10px;
    height: 16px; /* Beri tinggi agar layout tidak bergeser */
}



@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsif untuk Keranjang */
@media (max-width: 992px) {
    .cart-items, 
    #cart-summary {
        width: 100%;
    }
}
@media (max-width: 477px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .cart-item-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 992px) {
  #form-details {
    flex-direction: column;
    padding: 60px 40px;
  }

  #form-details form,
  #form-details .people {
    width: 100%;
  }
}

/* Ensure navbar is hidden by default on mobile and toggled by burger icon */
@media only screen and (max-width: 768px) {
  .section-p1 {
    padding: 20px 15px;
  }

  #header {
    padding: 15px 20px;
    position: relative;
  }

  .Logo-header {
    width: 120px;
    left: 20px;
    top: 10px;
  }

  #navbar {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 270px;
    background: #fff;
    box-shadow: 0 40px 60px rgba(0,0,0,0.1);
    padding: 80px 0 0 10px;
    transition: 0.3s ease-in-out;
  }

  #navbar.active {
    right: 0;
    display: flex;
    flex-direction: column;
  }

  #navbar li {
    margin-bottom: 25px;
  }

  #mobile {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  #close {
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
  }

  /* Header adjustments */
  #header {
    padding: 15px 30px;
  }

  .Logo-header {
    width: 120px;
    left: 30px;
  }

  /* Hero section */
  #first-page {
    padding: 0 20px;
    height: 70vh;
    background-position: top 30% right 30%;
  }

  #first-page h1 {
    font-size: 38px;
  }

  #first-page h2 {
    font-size: 32px;
  }

  #first-page h4 {
    font-size: 16px;
  }

  /* Feature section */
  .feature-p1 {
    padding: 40px 20px;
    gap: 15px;
  }

  .fe-box {
    width: 155px;
    margin: 0 0 15px 0;
  }

  /* Product section */
  #product1 {
    padding: 20px;
  }

  #product1 .pro-container {
    justify-content: center;
  }

  #product1 .pro {
    margin: 15px;
    width: calc(50% - 20px);
    min-width: 150px;
  }

  /* Banner sections */
  #banner {
    height: 25vh;
    padding: 30px;
  }

  #sm-banner .banner-box {
    min-width: 100%;
    height: 40vh;
    margin-bottom: 20px;
  }

  #banner3 {
    padding: 0 20px;
  }

  #banner3 .banner-box {
    width: 100%;
    margin-bottom: 20px;
  }

  /* Newsletter */
  #newsletter {
    padding: 40px 20px;
  }

  #newsletter .form {
    width: 100%;
    margin-top: 20px;
  }

  /* Footer */
  footer {
    padding: 20px;
  }

  footer .col {
    margin-bottom: 30px;
  }

  /* Cart page */
  #cart {
    overflow-x: auto;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .cart-item img {
    margin-bottom: 15px;
  }

  .cart-item-details {
    width: 100%;
    margin-bottom: 15px;
  }
}

/* Smaller mobile devices */
@media (max-width: 477px) {
  #header {
    padding: 10px 20px;
  }

  .Logo-header {
    width: 100px;
  }

  #first-page {
    background-position: 55%;
    padding: 0 15px;
  }

  #first-page h1 {
    font-size: 32px;
  }

  #first-page h2 {
    font-size: 28px;
  }

  #feature {
    justify-content: space-between;
  }

  .fe-box {
    width: 140px;
  }

  #product1 .pro {
    width: 100%;
  }

  #banner {
    height: 30vh;
  }

  #sm-banner .banner-box {
    height: 35vh;
  }

  #banner3 {
    padding: 0 15px;
  }

  #newsletter .form {
    padding: 0;
  }

  footer .copyright {
    text-align: start;
  }
}

/* Tambahkan CSS berikut di bagian Cart Responsive */

@media (max-width: 768px) {
  /* Global Navigation */
  #header {
    padding: 10px 20px;
  }

  #navbar {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 270px;
    background: #fff;
    box-shadow: 0 40px 60px rgba(0,0,0,0.1);
    padding: 80px 0 0 10px;
    transition: 0.3s ease-in-out;
  }

  #navbar.active {
    display: flex;
    right: 0;
  }

  #navbar li {
    margin-bottom: 25px;
  }

  #mobile {
    display: flex;
    align-items: center;
  }

  #close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #222;
    font-size: 24px;
    display: block;
  }

  /* Shop Page */
  #banner-shop {
    padding: 40px 20px;
    height: 30vh;
  }

  .pro-container {
    justify-content: center;
    padding: 20px;
  }

  .pro {
    width: calc(50% - 20px);
    min-width: 150px;
  }

  /* About Page */
  .about-p1 {
    padding: 40px 20px;
  }

  .about-p1 h1 {
    font-size: 28px;
  }

  .about-p2, .about-p3 {
    flex-direction: column;
    padding: 20px;
  }

  #misi {
    width: 100%;
    text-align: center;
  }

  #misi-img {
    width: 100%;
    height: 300px;
  }

  /* Bisnis Kami Page */
  .bisnis-kami-p1 {
    padding: 40px 20px;
  }

  .bisnis-kami-box-p2 {
    padding: 20px;
    height: auto;
  }

  .bisnis-kami-box-p2-card {
    width: 100%;
  }

  .solusi-logistic-box {
    flex-direction: column;
  }

  .solusi-logistic-box img {
    width: 100%;
    left: 0;
  }

  /* Contact Page */
  #contact-details {
    flex-direction: column;
    padding: 20px;
  }

  #contact-details .details,
  #contact-details .map {
    width: 100%;
  }

  #form-details {
    margin: 20px;
    padding: 30px;
    flex-direction: column;
  }

  #form-details form,
  #form-details .people {
    width: 100%;
  }

  /* Join with Us Page */
  .hero .container {
    flex-direction: column;
    padding: 20px;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps {
    flex-direction: column;
  }

  .step {
    width: 100%;
  }
}

/* Smaller screens */
@media (max-width: 480px) {
  .pro {
    width: 100%;
  }

  .about-p1 h1 {
    font-size: 24px;
  }

  .bisnis-kami-box-p2 h1 {
    font-size: 24px;
  }

  .solusi-logistic h1 {
    font-size: 24px;
  }

  #contact-details h2 {
    font-size: 24px;
  }

  .hero-title {
    font-size: 28px;
  }

  .benefit-card {
    padding: 20px;
  }

  .step {
    padding: 20px;
  }

  .testimonial-content p {
    font-size: 14px;
  }
}

/* Fix for Burger Menu */
#mobile {
  display: none;
  align-items: center;
  gap: 15px;
}

#mobile i {
  color: #1a1a1a;
  font-size: 24px;
  cursor: pointer;
}

#bar {
  cursor: pointer;
  padding: 10px;
}

@media (max-width: 768px) {
  #mobile {
    display: flex;
  }
  
  #navbar {
    z-index: 999;
  }
}