/* GENERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Content-Regular", Helvetica;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  margin: 0;
}
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.main-content {
  flex: 1;
}
section {
  scroll-margin-top: 140px;
}
.header {
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(196, 159, 18, 1) 34%,
    rgba(255, 255, 255, 1) 100%
  );
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  font-family: "Content-Bold", Helvetica;
}

/* HEADER TOP */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.company-name {
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo img {
  height: 50px;
  width: auto;
}

.login a {
  text-decoration: none;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.login a:hover {
  color: #c49f12;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* LANGUAGE */
.language {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.language img:hover {
  transform: scale(1.1);
}

/* HEADER BOTTOM */
.header-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f8f8;
  padding: 15px 20px;
  min-height: 60px;
}

.navbar {
  margin-left: 20px;
  flex: 1;
  display: flex;
}
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar .nav-links li a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.navbar .nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #c49f12;
  transition: width 0.3s ease;
}

.navbar .nav-links li a:hover::after {
  width: 100%;
}

.navbar .nav-links li a:active {
  color: #c49f12;
}

.contact-us a {
  text-decoration: none;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
}

.contact-us a:hover {
  color: #c49f12;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  margin-left: 10px;
}

.login a,
.contact-us a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.login img,
.contact-us img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.navbar .nav-links li a,
.login a,
.contact-us a {
  transition: color 0.3s ease;
}
/* ================= HERO CENTER TRACKING ================= */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Content-Bold", Helvetica;
  padding: 60px 20px;
  overflow: hidden;
}

.hero.main {
  background: url("img/main 1.svg") center / cover no-repeat;
}

.hero.main1 {
  background: url("./img/main\ 1.svg") center / cover no-repeat;
}

.hero.track {
  background: url("img/PictTrack.svg") center / cover no-repeat;
}
.hero.track1 {
  background: url("./img/PictTrack.svg") center / cover no-repeat;
}

.hero-container {
  background: #ffffff;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.hero-center {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding: 20px;
  width: 100%;
  max-width: 700px;
  animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-center h1 {
  font-size: 40px;
  margin-bottom: 15px;
  color: #94885b;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
}

/* tracking form */
.tracking-form {
  display: flex;
  justify-content: center;
  max-width: 490px;
  margin: auto;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.tracking-form input {
  flex: 1;
  padding: 16px;
  border: none;
  outline: none;
  font-size: 16px;
}

.tracking-form button {
  background: #c49f12;
  color: #ffffff;
  border: none;
  padding: 0 30px;
  font-size: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.tracking-form button:hover {
  background: #a8860f;
}
/* ================= HERO CARDS ================= */
.hero-cards {
  background: #ffffff;
  padding: 60px 20px 40px;
  position: relative;
  font-family: "Content-Regular", Helvetica;
}

.cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
  transform: translateY(-50%);
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: contents;
}
.card {
  background: #c49f12;
  border-radius: 12px;
  padding: 20px 10px;
  flex: 1;
  max-width: 160px;
  max-height: 170px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  position: relative;
  z-index: 20;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.2);
}

.card h3 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #000000;
}

.card p {
  font-size: 9px;
  color: #000000;
  line-height: 1.5;
}

/* ================= About US ================= */
.about-us {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.about-container {
  max-width: 1000px;
  margin: auto;
}

.about-us h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #000000;
  font-family: "Content-Bold", Helvetica;
  text-shadow: 2px 6px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.about-us p {
  font-size: 20px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 50px;
  font-family: "Content-Regular", Helvetica;
}

.about-images {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  min-width: 200px;
  min-height: 250px;
  text-align: center;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.about-button {
  text-align: center;
  margin-top: 20px;
}

.learn-more-btn {
  display: inline-block;
  padding: 20px 25px;
  background-color: #c49f12;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  font-family: "Content-Bold", Helvetica;
}

.learn-more-btn:hover {
  background-color: #a8860f;
}
/* ================= Service ================= */
.services {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

.services h2 {
  font-size: 36px;
  font-family: "Content-Bold", Helvetica;
  margin-bottom: 20px;
  color: #000000;
  text-shadow: 2px 6px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 20px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  background: linear-gradient(
    90deg,
    rgba(196, 159, 18, 1) 10%,
    rgba(255, 255, 255, 1) 55%
  );
  border: 2px solid #c49f12;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card.reverse {
  flex-direction: row-reverse;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 45%,
    rgba(196, 159, 18, 1) 100%
  );
}

.service-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  width: 150px;
}

.service-left img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.service-left h3 {
  font-size: 16px;
  font-family: "Content-Bold", Helvetica;
  text-align: center;
  margin: 0;
  color: #000000;
}

.service-card p {
  margin: 0;
  font-size: 16px;
  font-family: "Content-Regular", Helvetica;
  color: #000000;
  line-height: 1.5;
  flex: 1;
}

.service-desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.desc-item strong {
  display: block;
  font-size: 16px;
  font-family: "Content-Bold", Helvetica;
  margin-bottom: 5px;
  color: #000000;
}

.desc-item p {
  margin: 0;
  font-size: 16px;
  font-family: "Content-Regular", Helvetica;
  line-height: 1.5;
  color: #000000;
}
/* ================= LOCATION ================= */
.location-map-section {
  background: #ffffff;
  padding: 0 20px 80px;
  padding-bottom: 40px;
}

.indonesia-map {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

.indonesia-map img {
  width: 100%;
  display: block;
}

/* PIN */
.map-pin {
  position: absolute;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  transform: translate(-50%, -100%);
  padding: 0;
  color: #c49f12;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.map-pin:hover {
  transform: translate(-50%, -110%) scale(1.15);
}
.map-pin.active {
  color: #a8860f;
}

.map-pin.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(196, 159, 18, 0.6);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: wave 1.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes wave {
  0% {
    transform: translateX(-50%) scale(0.3);
    opacity: 0.9;
  }
  100% {
    transform: translateX(-50%) scale(3);
    opacity: 0;
  }
}
/* INFO CARD */
.location-info-card {
  max-width: 700px;
  margin: 40px auto 0;
  padding: 30px;
  background: #d9d9d9;
  border-radius: 16px;
  box-shadow:
    0 6px 0 #b1b1b1,
    0 14px 30px rgba(0, 0, 0, 0.15);
}

.location-info-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 20px;
  margin-bottom: 10px;
  font-family: "Content-Bold", Helvetica;
  text-align: center;
}

.location-info-card p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-family: "Content-Regular", Helvetica;
  text-align: center;
}

.title-pin {
  font-size: 20px;
  color: #c49f12;
  transform: translateY(-1px);
  line-height: 1;
}

/* ================= OUR GROUP ================= */
.our-group {
  background: #ffffff;
  padding: 80px 20px;
  padding-bottom: 40px;
}

.our-group-container {
  max-width: 1000px;
  margin: auto;
}

.our-group h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  font-family: "Content-Bold", Helvetica;
  color: #000000;
  text-shadow: 2px 6px 4px rgba(0, 0, 0, 0.25);
}

/* ITEM */
.group-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid #dddddd;
}

.group-item:last-child {
  border-bottom: none;
}

/* LOGO */
.group-logo {
  flex: 0 0 140px;
  display: flex;
  justify-content: center;
}

.group-logo img {
  max-width: 120px;
  height: auto;
}

/* CONTENT */
.group-content {
  flex: 1;
  text-align: center;
}

.group-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-family: "Content-Bold", Helvetica;
  color: #000000;
}

.group-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
  font-family: "Content-Regular", Helvetica;
}

/* ================= OUR CLIENTS ================= */
.our-clients {
  background: #ffffff;
  padding: 80px 20px;
  padding-bottom: 50px;
}

.our-clients-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.our-clients h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  font-family: "Content-Bold", Helvetica;
  color: #000000;
  text-shadow: 2px 6px 4px rgba(0, 0, 0, 0.25);
}

/* LOGO */
.clients-logos {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.client-logo:hover {
  transform: scale(1.08);
}

.client-logo img {
  width: 100%;
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
}

/* ================= NEWS & ARTICLES ================= */
.news-articles {
  background: #ffffff;
  padding: 80px 20px;
  padding-top: 40px;
}

.news-container {
  max-width: 1200px;
  margin: auto;
}

.news-articles h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  font-family: "Content-Bold", Helvetica;
  color: #000000;
  text-shadow: 2px 6px 4px rgba(0, 0, 0, 0.25);
}

.news-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* CAROUSEL */
.news-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 5px;
}

.news-carousel::-webkit-scrollbar {
  display: none;
}

/* CARD */
.news-card {
  min-width: 320px;
  max-width: 320px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.news-date {
  font-size: 13px;
  color: #c49f12;
  font-family: "Content-Bold", Helvetica;
}

.news-content h3 {
  font-size: 18px;
  margin: 10px 0;
  font-family: "Content-Bold", Helvetica;
  color: #000000;
}

.news-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
  font-family: "Content-Regular", Helvetica;
}

.carousel-btn {
  background: transparent;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  color: #000000;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 5;
  transition: transform 0.3s ease;
}

.carousel-btn:hover {
  transform: scale(1.2);
}

.carousel-btn.prev {
  left: -10px;
}

.carousel-btn.next {
  right: -10px;
}
/* ================= NEWS DETAIL ================= */
.news-detail {
  padding: 80px 20px;
  background: #ffffff;
}

.news-detail-container {
  max-width: 850px;
  margin: 50px auto;
  padding: 0 20px;
}

.news-detail-container img {
  width: 100%;
  margin-bottom: 20px;
}

.news-detail-container h1 {
  font-size: 42px;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 18px;
}

.news-detail-container p {
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
  font-family: "Content-Regular", Helvetica;
}

.back-news {
  display: inline-block;
  margin-top: 40px;
  text-decoration: none;
  font-weight: 600;
}

.news-content-text {
  font-size: 18px;
  line-height: 1.9;
  color: #111827;
  text-align: justify;
}

.news-content-text p {
  margin-bottom: 24px;
}

.news-content-text p:first-child {
  display: inline;
}

.news-content-text img {
  max-width: 100%;
  border-radius: 12px;
  margin: 20px 0;
}

.news-content-text h2,
.news-content-text h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.news-content-text ul,
.news-content-text ol {
  padding-left: 20px;
}

.news-subtitle {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 28px;
}

.news-meta {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 35px;
  font-weight: 500;
}

.news-date {
  display: inline-block;
  margin-bottom: 35px;
  font-size: 14px;
  color: #111827;
}

.news-opening {
  display: inline;
  font-weight: 600;
  color: #111827;
}

.news-image {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 35px;
  object-fit: cover;
}

.news-source {
  margin-top: 40px;
  color: #6b7280;
  font-size: 14px;
}
/* ================= FOOTER ================= */
.footer {
  background: #c49f12;
  color: #000000;
  padding: 60px 20px 0;
  font-family: "Content-Regular", Helvetica;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 10px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 50px;
  height: auto;
}

.footer-logo h3 {
  font-family: "Content-Bold", Helvetica;
  font-size: 20px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-family: "Content-Bold", Helvetica;
}
.footer-col-w h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-family: "Content-Bold", Helvetica;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col-w ul {
  list-style: none;
  padding: 0;
}

.footer-col-w img {
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-col-w ul li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-col ul li a {
  text-decoration: none;
  color: #000000;
}
.footer-col-w ul li a {
  text-decoration: none;
  color: #000000;
}
.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-contact li {
  color: #cccccc;
}

.footer-bottom {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 20px 0;
  border-top: 1px solid #444444;
  font-size: 13px;
  color: #aaaaaa;
  text-align: center;
}
/* ========= CONTACT PAGE ========== */
.contact-page {
  background: #ffffff;
  padding: 60px 20px;
}

/* Container utama */
.contact-page-container {
  max-width: 1400px;
  margin: auto;
}

/* Layout utama */
.contact-wrapper {
  max-width: 1300px;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* FORM SIDE */
.contact-form-wrapper {
  display: flex;
  align-items: stretch;
}

.contact-form-box {
  width: 100%;
  max-width: 550px; /* biar tidak terlalu lebar */
  background: #c49f12;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-form-box h1 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 15px;
  color: #ffffff;
  font-family: "Content-Bold", Helvetica;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border: none;
  font-size: 14px;
  font-family: "Content-Regular", Helvetica;
}

.contact-form textarea {
  resize: none;
}

/* BUTTON (dibenerin) */
.contact-form button {
  width: 100%;
  background: #ffffff;
  color: #000;
  border: none;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #e5e5e5;
}

/* IMAGE SIDE */
.contact-image {
  display: flex;
  justify-content: center;
}

.contact-image img {
  object-fit: cover;
  width: 100%;
  max-width: 550px;
  height: auto; /* FIX utama */
}

.contact-form-wrapper,
.contact-image {
  flex: 1;
  display: flex;
}

.contact-form-box,
.contact-image img {
  height: 100%;
  width: 100%;
  max-width: none; /* INI KUNCI */
}
/*========== CSR ======== */
.csr-page {
  background: #ffffff;
  padding: 80px 20px;
}

.csr-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.csr-container h1 {
  font-size: 36px;
  font-family: "Content-Bold", Helvetica;
  color: #000000;
  margin-bottom: 15px;
  text-shadow: 2px 6px 4px rgba(0, 0, 0, 0.25);
  padding-top: 20px;
}

.csr-container p {
  font-size: 16px;
  font-family: "Content-Regular", Helvetica;
  color: #000000;
  margin-bottom: 50px;
}

.csr-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.csr-card {
  background: #f8f8f8;
  border: 2px solid #c49f12;
  border-radius: 12px;
  max-width: 350px;
  min-width: 300px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.csr-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.csr-card h3 {
  font-size: 20px;
  font-family: "Content-Bold", Helvetica;
  margin: 0;
  padding: 0 15px;
  color: #000000;
}

.csr-card p {
  font-size: 14px;
  font-family: "Content-Regular", Helvetica;
  padding: 0 15px 15px;
  color: #000000;
  line-height: 1.5;
}

.csr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

.csr-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.csr-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 5px;
}

.csr-carousel::-webkit-scrollbar {
  display: none;
}

.section-title {
  font-size: 28px;
  font-family: "Content-Bold", Helvetica;
  margin: 60px 0 30px;
  text-align: center;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.activity-card {
  background: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  border: 2px solid #c49f12;
}

.activity-card:hover {
  transform: translateY(-8px);
}

.activity-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.activity-card h3 {
  padding: 15px 15px 5px;
  font-family: "Content-Bold", Helvetica;
}

.activity-card p {
  padding: 0 15px 15px;
  font-size: 14px;
  font-family: "Content-Regular", Helvetica;
}

/* ================= LOGIN ================= */
.login-page {
  background-color: #ffffff;
  min-height: calc(100vh - 170px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Content-Regular", Helvetica;
  padding: 20px;
}

.login-container {
  background: #c49f12;
  padding: 40px 30px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.login-container h1 {
  font-size: 28px;
  margin-bottom: 25px;
  font-family: "Content-Bold", Helvetica;
  color: #ffffff;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-form input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: none;
  font-size: 14px;
  text-align: center;
}

.login-form input:focus {
  border-color: #ffffff;
}

.login-form button {
  width: 150px;
  height: 45px;
  background: #ffffff;
  color: #000000;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

.login-form button:hover {
  background: #e4e4e4;
}

/* ================= REGISTER ================= */
.register-page {
  min-height: calc(100vh - 140px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.register-box {
  background: #c49f12;
  padding: 40px 30px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.register-box h1 {
  color: #ffffff;
  margin-bottom: 30px;
  font-family: "Content-Bold", Helvetica;
}

.register-box input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: none;
  font-size: 14px;
  text-align: center;
}

.register-box button {
  width: 150px;
  height: 45px;
  background: #ffffff;
  color: #000000;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

.register-box p {
  color: #ffffff;
  margin-top: 20px;
  font-size: 14px;
}

.register-box p a {
  color: #ffffff;
  text-decoration: underline;
}

/* ================= TRACKING RESULT ================= */
.tracking-result {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

/* Kotak detail pengiriman */
.tracking-box {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #c49f12;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}
.tracking-box h2 {
  font-size: 26px;
  margin-bottom: 15px;
  font-family: "Content-Bold", Helvetica;
}
.tracking-status {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Content-Regular", Helvetica;
}
.tracking-status.delivered {
  background: linear-gradient(45deg, #27ae60, #2ecc71);
}
.tracking-status.onprocess {
  background: linear-gradient(45deg, #f39c12, #f1c40f);
  color: #000;
}
.tracking-status.pending {
  background: linear-gradient(45deg, #c0392b, #e74c3c);
}

/* Grid untuk detail */
.tracking-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 40px;
  margin-top: 20px;
  font-family: "Content-Regular", Helvetica;
}
.tracking-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}

.tracking-info strong {
  display: inline-block;
  font-weight: 600;
}

.tracking-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 14px;
}

.tracking-row span {
  color: #555;
  min-width: 130px;
}

.tracking-row strong {
  color: #222;
  text-align: right;
}

.volume-value {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

/* Badge kecil P L T */
.vol-badge {
  background: #e5e7eb;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1;
}

/* Separator × */
.vol-sep {
  margin: 0 2px;
  font-weight: 600;
}

/* Unit meter */
.vol-unit {
  margin-left: 4px;
  font-size: 12px;
  color: #555;
}
/* Timeline riwayat pengiriman */
.tracking-timeline {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.tracking-timeline h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 700;
  font-family: "Content-Bold", Helvetica;
}
.tracking-timeline ul {
  list-style: none;
  padding-left: 0;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  font-family: "Content-Regular", Helvetica;
}
.tracking-timeline ul::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #c49f12;
  border-radius: 2px;
}
.tracking-timeline li {
  position: relative;
  margin-bottom: 30px;
  padding-left: 80px;
}
.tracking-timeline li .dot {
  position: absolute;
  left: 32px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #c49f12;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #c49f12;
}
.tracking-timeline li .time {
  font-size: 13px;
  color: #555;
  margin-bottom: 5px;
}
.tracking-timeline li .desc {
  font-size: 15px;
  font-weight: 500;
}
.tracking-timeline li.delivered .dot {
  background: #2ecc71;
  box-shadow: 0 0 0 2px #27ae60;
}
.tracking-timeline li.onprocess .dot {
  background: #f1c40f;
  box-shadow: 0 0 0 2px #f39c12;
}
.tracking-timeline li.pending .dot {
  background: #e74c3c;
  box-shadow: 0 0 0 2px #c0392b;
}

.back-home {
  display: inline-block;
  background: #c49f12;
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 8px;
  text-align: center;
  margin: 20px auto 20px auto;
  transition: all 0.3s ease;
  display: block;
  width: fit-content;
  font-family: "Content-Regular", Helvetica;
}
.back-home:hover {
  background: #e0b72f;
  text-decoration: none;
}

/* RESPONSIVE MOBILE*/
@media screen and (max-width: 768px) {
  .header-bottom {
    flex-direction: column;
    position: relative;
    align-items: flex-start;
    gap: 10px;
  }
  .company-name {
    font-size: 16px;
  }
  .logo img {
    height: 40px; /* Menurunkan ukuran logo di layar kecil */
  }

  .contact-us {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    order: 1;
  }
  .contact-us a {
    font-size: 14px; /* Menyesuaikan ukuran font di mobile */
    padding: 8px 15px; /* Mengurangi padding untuk mobile */
  }

  .login img,
  .contact-us img {
    width: 14px;
    height: 14px;
  }

  .navbar {
    width: 100%;
    max-height: 0;
    margin-top: 5px;
    margin-left: 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transition: max-height 0.4s ease;
    order: 2;
  }

  .navbar.active {
    max-height: 300px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero {
    padding: 40px 15px;
  }

  .hero-center h1 {
    font-size: 28px;
  }

  .tracking-form {
    flex-direction: column;
    max-width: 100%;
  }

  .tracking-form input {
    width: 100%;
    font-size: 14px;
  }

  .tracking-form button {
    width: 100%;
    font-size: 20px;
    padding: 12px;
  }
  .cards-container {
    flex-direction: column;
    gap: 20px;
    transform: translateY(-10%);
  }

  .card {
    max-width: 100%;
  }

  .hero-cards {
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .about-us {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .about-us h2 {
    font-size: 28px;
  }

  .about-us p {
    font-size: 15px;
  }

  .about-images {
    flex-direction: column;
    gap: 20px;
  }

  .about-image {
    width: 100%;
  }

  .services {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .services h2 {
    font-size: 28px;
  }

  .service-cards {
    flex-direction: column;
    gap: 20px;
  }

  .service-card {
    display: flex;
    align-items: center;
    padding: 25px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f0d8 60%, #c49f12 100%);
  }
  .service-card.reverse {
    flex-direction: column;
    text-align: center;
  }

  .service-card.reverse .service-desc,
  .service-card.reverse .service-left {
    width: 100%;
    align-items: center;
  }

  .service-left {
    width: 100%;
    align-items: center;
  }

  .service-card p {
    text-align: center;
  }

  .location-map-section {
    padding-top: 30px;
  }

  .location-info-card {
    margin-top: 25px;
    padding: 20px;
    text-align: center;
  }

  .location-info-card h3 {
    justify-content: center;
  }

  .map-pin {
    font-size: 22px;
  }

  .map-pin.active::after {
    width: 8px;
    height: 8px;
  }

  .our-group {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .group-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .group-logo {
    flex: unset;
  }

  .our-clients {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .our-clients h2 {
    font-size: 28px;
  }

  .clients-logos {
    grid-template-columns: repeat(4, 1fr);
  }

  .client-logo img {
    max-width: 90px;
  }

  .news-articles {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .news-articles h2 {
    font-size: 28px;
  }

  .news-carousel {
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 5px;
  }

  .carousel-btn {
    display: flex;
  }

  .news-card {
    min-width: 85%;
    max-width: 85%;
    scroll-snap-align: start;
  }

  .news-card:hover .news-content h3 {
    color: #c49f12;
  }

  .news-card:hover img {
    transform: scale(1.05);
  }

  .news-card img {
    transition: transform 0.4s ease;
  }

  .news-content h3 {
    font-size: 16px;
  }

  .news-content p {
    font-size: 13px;
  }

  .news-date {
    font-size: 12px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-logo {
    justify-content: center;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form-wrapper {
    width: 100%;
    max-width: 520px;
  }

  .contact-image img {
    max-width: 520px;
    width: 100%;
  }

  .contact-form-box {
    padding: 30px 20px;
  }

  .contact-form-box h1 {
    font-size: 26px;
  }

  .contact-form button {
    align-self: flex-end;
  }

  .csr-cards {
    flex-direction: column;
    gap: 20px;
  }

  .csr-carousel {
    scroll-snap-type: x mandatory;
  }

  .csr-card {
    scroll-snap-align: start;
  }

  .activity-grid {
    grid-template-columns: 1fr;
  }

  .login-container {
    margin: 0 20px;
    padding: 30px 20px;
  }

  .tracking-info {
    grid-template-columns: 1fr;
  }
  .volume-value {
    gap: 4px;
    font-size: 14px;
  }

  .vol-badge {
    font-size: 10px;
    padding: 2px 5px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .contact-image {
    order: -1; /* gambar di atas */
  }

  .contact-form-box {
    max-width: 100%;
  }
}
/* RESPONSIVE TABLET*/
@media screen and (max-width: 1024px) {
  .clients-logos {
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
  }
}

@media (min-width: 1400px) {
  .contact-wrapper {
    gap: 80px;
  }

  .contact-form-box {
    max-width: 600px;
    padding: 40px;
  }

  .contact-form-box h1 {
    font-size: 28px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
    padding: 16px;
  }

  .contact-form button {
    font-size: 16px;
    padding: 14px;
  }

  .contact-image img {
    max-width: 600px;
  }
}
