/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f7f7f7;
  color: #333;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== HERO SLIDER ===== */

.hero {
  width: 100vw; /* full viewport width */
  margin-left: calc(-50vw + 50%); /* hapus efek padding container */
}
.hero-wrapper.slider {
  max-width: 1000px;
  width: 100%;
  background: #bfe3ec;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin: 40px auto;
}

.hero-wrapper.slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-wrapper.slider .slide.active {
  opacity: 1;
  z-index: 1;
}

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

/* Tombol prev/next */
.hero-wrapper.slider .prev,
.hero-wrapper.slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
}

.hero-wrapper.slider .prev {
  left: 10px;
}

.hero-wrapper.slider .next {
  right: 10px;
}

/* Dots Indicator */
.hero-wrapper.slider .dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.hero-wrapper.slider .dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.hero-wrapper.slider .dot.active {
  background: #002c7c;
}

/* ===== PRODUK ===== */
.produk {
  background: #fff;
  padding: 70px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.produk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.produk-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.produk-img {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.produk-img img {
  max-width: 100%;
  max-height: 100%;
  cursor: pointer;
}

.produk-title {
  background: #002c7c;
  color: #fff;
  padding: 14px;
  text-align: center;
}

/* ===== TENTANG KAMI ===== */
.tentang-kami {
  padding: 80px 0;
  background: #f9f9f9;
}

.judul {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
}

.tentang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.video-wrapper video {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
}

.info-perusahaan {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.info-perusahaan table td {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .tentang-grid { grid-template-columns:1fr; }
  .hero-wrapper.slider { max-width:95%; }
}

/* ===== HEADER ===== */
.site-header {
  background: #fff;
  padding: 15px 0;
  position: relative;
  z-index: 999;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-name {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}

/* Navigasi */
.main-nav {
  display: flex;
  gap: 15px;
  align-items: center;
}

.main-nav .nav-link {
  display: inline-block;
  padding: 8px 16px;
  background-color: #007bff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.main-nav .nav-link:hover {
  background-color: #0056b3;
  color: #fff;
}

.main-nav .nav-link.active {
  background-color: #2563eb;
  pointer-events: none;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile */
@media(max-width:768px){
  .menu-toggle { display: block; }
  .main-nav {
    flex-direction: column;
    gap: 10px;
    display: none;
  }
  .main-nav.show { display: flex; }
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: #fff;
  color: #000; 
  padding: 40px 15px 20px;
  font-size: 14px;
  line-height: 1.5;
  font-family: Arial, sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 30px;
}

.footer-map {
  grid-column: span 2; /* MAP LEBAR 2 KOLOM */
}

.map-embed {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}




.footer-title {
  color: #000;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #fff;
  padding-bottom: 8px;
}

.footer-col p {
  margin-bottom: 20px;
  color: #ccc;
}

.footer-social {
  display: flex;
  gap: 12px;
}

/* Footer social icons */
.footer-social a img {
  width: 30px;
  margin-right: 12px;
  filter: none; /* Hapus filter putih sebelumnya */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}


.marketing-photo {
  width: 100%;
  max-width: 140px;
  border-radius: 10px;
  margin-bottom: 15px;
  object-fit: cover;
}

.wa-button {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease;
  margin-bottom: 15px;
}

.wa-button:hover {
  background-color: #1ebe5b;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #ccc; /* bisa lebih terang untuk footer putih */
  text-align: center;
  padding: 10px 15px;
  color: #000;  /* ubah menjadi hitam */
  font-size: 13px;
}


/* Alamat, deskripsi, info marketing */
.footer-col, 
.footer-col p, 
.footer-col li, 
.footer-links a, 
.footer-col span {
  color: #000; /* semua teks termasuk simbol @ jadi hitam */
}




/* Tombol WhatsApp mengambang */
.whatsapp-float {
  position: fixed;
  bottom: 20px;       /* jarak dari bawah layar */
  right: 20px;        /* jarak dari kanan layar */
  background-color: #25d366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;      /* pastikan muncul di atas semua elemen */
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* Overlay zoom image */
.image-zoom-overlay {
  display: none; /* default tersembunyi */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8); /* background gelap */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
}

.image-zoom-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.image-zoom-overlay img:hover {
  transform: scale(1.05);
}

.footer-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-4col {
    grid-template-columns: 1fr;
  }
}

.footer-map iframe {
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
