/* ================= GLOBAL STYLE ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif; /* <<< Font seragam Inter */
}


body, html {
  margin: 0; padding: 0; height: 100%;
  background-color:#f6f9fc;
  color: #222;
  line-height: 1.6;
}


/* ================= HEADER & NAVBAR ================= */
 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;;
  background:#f6f9fc;
  color: #222;
}
header {
  background: #fff;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  padding: 20px 60px;
  display: flex;
  justify-content: space-between; /* logo kiri, nav-wrapper kanan */
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.logo1 {
  height: 55px;
  width: 200px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav {
  display: flex;
}

nav a {
  margin-left: 20px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  color: #0d47a1;
  padding-bottom: 5px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

nav a.active,
nav a:hover {
  border-color: #1976d2;
  color: #1976d2;
}

/* Tombol hamburger */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #0d47a1;
}

/* Responsive */
@media(max-width: 768px) {
  header {
    padding: 20px 25px;
  }
  nav {
    display: none; /* disembunyikan dulu */
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 15px;
  }
  nav a {
    margin: 10px 0;
    font-size: 1rem;
  }
  .hamburger {
    display: block;
  }
  nav.show {
    display: flex;
  }
  .logo1 {
    height: 45px;
    width: 150px;
  }
}

.btn1 {
  display: inline-block;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #0d47a1;
  background: white;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: 0.3s ease;

}

.btn1:hover {
  background: #f1f1f1;
  transform: translateY(-3px);
}

/* ================= BERANDA ================= */
/* Hero section */
.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 50px 8%;
  min-height: 75vh; /* default desktop */
  background: linear-gradient(rgba(0, 86, 210, 0.7), rgba(79, 172, 254, 0.7)),
              url("image/img/blue-and-white-modern.png")
              no-repeat center center/cover;
  color: white;
  position: relative;
}

.hero-content {
  max-width: 600px;
  z-index: 1;
  animation: fadeInLeft 1.5s ease;
  text-align: left;
  padding-right: 10px;
}

.hero-content h1 {
  font-size: 3rem;    /* desktop besar */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Hilangkan hero-image bila tidak perlu */
.hero-image {
  display: none;
}

/* ===== Responsive Height + Font ===== */
@media (max-width: 1024px) {
  .hero {
    min-height: 65vh;
    padding: 40px 6%;
  }
  .hero-content h1 { font-size: 2.5rem; } /* lebih kecil */
  .hero-content p  { font-size: 1.1rem; }
}

@media (max-width: 768px) {
  .hero {
    min-height: 55vh;
    padding: 30px 6%;
  }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p  { font-size: 1rem; }
}

@media (max-width: 480px) {
  .hero {
    min-height: 45vh;
    padding: 25px 5%;
  }
  .hero-content h1 { font-size: 1.6rem; } /* hp kecil */
  .hero-content p  { font-size: 0.9rem; }
}

/* Animasi tetap sama */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #0056d2;
  background: white;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.btn:hover {
  background: #f1f1f1;
  transform: translateY(-3px);
}

/* Animation */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Sections */
.section {
  padding: 60px 0;
  background-color: white;
  text-align: center;
  overflow: hidden; /* biar animasi rapi */
}

.h2-about {
  font-size: 32px;
  margin-bottom: 40px;
  color: #0d47a1;

  /* animasi */
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease-out forwards;
}

.section p {
  text-align: center;
  margin: 0 auto;
  max-width: 800px; /* biar rapi di layar besar */
  font-size: 19px;

  /* animasi */
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.5s; /* muncul setelah judul */
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .h2-about {
    font-size: 28px;
  }

  .section p {
    font-size: 17px;
    max-width: 600px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .h2-about {
    font-size: 24px;
  }

  .section p {
    font-size: 16px;
    max-width: 500px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .h2-about {
    font-size: 20px;
  }

  .section p {
    font-size: 14px;
    max-width: 90%;
    padding: 0 10px;
  }
}

/* Container Visi Misi */
.visi-misi {
  background: #fff;
  padding: 60px 20px;
}

.vm-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

.vm-box h2 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.vm-box h2 span {
  color: #1e3a8a; /* biru */
}

.vm-box hr {
  border: none;
  height: 2px;
  background: #1e3a8a;
  margin-bottom: 20px;
  width: 100%;
}

.vm-box p,
.vm-box li {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.vm-box ul {
  list-style: disc;
  padding-left: 20px;
}

/* ===== Judul ===== */
.card-vm h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0a4dff;
  position: relative;
  display: inline-block;
}

.card-vm h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50%;
  height: 3px;
  background: #0a4dff;
  border-radius: 2px;
}

/* ===== Paragraf ===== */
.card-vm p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* ===== List Misi ===== */
.card-vm ul {
  list-style: none;
  padding-left: 0;
}

.card-vm ul li {
  margin-bottom: 14px;
  font-size: 16px;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.6s ease forwards;
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Keyframes Animasi ===== */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .visi-misi {
    gap: 20px;
    padding: 20px 10px;
  }

  .card-vm {
    padding: 25px 20px;
  }

  .card-vm h3 {
    font-size: 20px;
  }

  .card-vm p, .card-vm ul li {
    font-size: 15px;
  }
}

/* ===== HERO IMAGE HEADER ===== */
.hero1-contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  min-height: 350px;
  padding: 60px 20px;
  background: linear-gradient(rgba(13, 71, 161, .7), rgba(25, 118, 210, .7)),
             url("/jawaindah-web/image/img/kontak.png") center/cover no-repeat;
  overflow: hidden;
}

.hero1-content {
  max-width: 700px;
  opacity: 0;
  transform: translateY(80px);
  animation: slideUp 1s ease forwards;
}

.hero1-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero1-content p {
  font-size: 20px;
  font-weight: 400;
}

/* Animasi Slide Up */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 992px) {
  .hero1-content h1 { font-size: 44px; }
}

@media (max-width: 768px) {
  .hero1-contact { min-height: 240px; padding: 40px 10px; }
  .hero1-content h1 { font-size: 36px; }
  .hero1-content p { font-size: 16px; }
}

@media (max-width: 480px) {
  .hero1-contact { min-height: 200px; padding: 30px 8px; }
  .hero1-content h1 { font-size: 26px; }
  .hero1-content p { font-size: 14px; }
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  padding: 60px 40px;
  text-align: center;
  background: #f8fafc; /* sedikit abu-abu terang agar kontras dengan card */
}

.contact-card {
  padding: 30px 20px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  border: 1px solid rgba(0,0,0,0.03);
}

.contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}

.contact-card i {
  font-size: 2.8rem;
  color: #0d6efd; /* biru elegan */
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.contact-card:hover i {
  color: #0b5ed7; /* sedikit lebih gelap saat hover */
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #222;
}

.contact-card p {
  font-size: 0.95rem;body {
  margin: 0;
 font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f7f9fc;
  color: #333;
}

.office-section {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

/* === Left Column === */
.office-left {
  flex: 1 1 65%;
  background: #f7f9fc;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  color: #0050a3;
  text-align: center;
  margin-bottom: 5px;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 25px;
}

.office-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #dce3ed;
}

.office-tabs .tab {
  background: none;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 0;
  color: #333;
  position: relative;
  cursor: pointer;
}

.office-tabs .tab.active {
  color: #0050a3;
}

.office-tabs .tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: #0050a3;
  border-radius: 2px;
}

/* Info Cards */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

.info-card {
  background: #fff;
  border: 1px solid #e5eaf1;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-card .icon {
  font-size: 2rem;
  color: #0050a3;
  margin-bottom: 15px;
}

.info-card h3 {
  color: #0050a3;
  margin-bottom: 10px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* === Right Column === */
.customer-card {
  flex: 1 1 30%;
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.customer-card h3 {
  font-size: 1.4rem;
  color: #002b5c;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 2px solid #e5eaf1;
  padding-bottom: 10px;
}

.cs-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.cs-item i {
  font-size: 1.5rem;
  color: #0050a3;
  margin-top: 2px;
}

.cs-item h4 {
  font-size: 1rem;
  color: #0050a3;
  margin-bottom: 4px;
}

.cs-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}

/* Responsif */
@media (max-width: 992px) {
  .office-section {
    flex-direction: column;
  }
  .customer-card {
    max-width: 100%;
  }
}

  color: #555;
  margin: 0;
}

.contact-card a {
  display: inline-block;
  margin-top: 6px;
  color: #0d6efd;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: #0b5ed7;
  text-decoration: underline;
}


/* ===== Bagian Contact Us + Map ===== */
.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;   /* supaya tinggi sama */
  flex-wrap: wrap;        /* biar responsif di layar kecil */
  gap: 20px;
  padding: 40px;
  background: #f6f9fc;
}

.contact-form,
.map {
  flex: 1 1 48%;          /* masing-masing ambil sekitar setengah */
  min-width: 320px;       /* biar tidak terlalu kecil di layar kecil */
  background:#f6f9fc;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.contact-form h2,
.map h2 {
  margin-bottom: 20px;
  text-align: center;
  color: #0b3d91;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-form button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0056b3;
}

.contact-quote {
  margin-top: 20px;
  font-style: italic;
  font-size: 14px;
  color: #555;
  text-align: center;
}

.map iframe {
  flex: 1;
  width: 100%;
  min-height: 350px;
  border: none;
  border-radius: 8px;
}
.location-section {
  text-align: center;
  padding: 50px 20px;
  background: #f9fbfd;
}

.location-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: #333;
}

.location-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap; /* biar responsif */
}

.map-box {
  flex: 1 1 500px;
  min-width: 300px;
}

.map-box iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}



/* Animasi scroll */
.fade-in-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: transl
  visi-misi  grid-template-columns 1fr;
  }

  .card-vm {
    padding: 20px 15px;
  }

  .card-vm h3 {
    font-size: 18px;
  

  .card-vm p, .card-vm ul li {
    font-size: 14px;
  }
}


.card-vm ul li:nth-child(1) { animation-delay: 0.2s; }
.card-vm ul li:nth-child(2) { animation-delay: 0.4s; }
.card-vm ul li:nth-child(3) { animation-delay: 0.6s; }
.card-vm ul li:nth-child(4) { animation-delay: 0.8s; }

/* Ikon */
.card-vm ul li::before {
  content: "✔";
  color: #0a4dff;
  font-weight: bold;
  flex-shrink: 0;
}

/* Animasi */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsif */
@media (max-width: 768px) {
  .visi-misi {
    gap: 20px;
  }

  .card-vm {
    padding: 25px 20px;
  }

  .card-vm h3 {
    font-size: 20px;
  }
}

.produk-section {
  background: #f8fafc;
  padding: 20px 20px;
}

.produk-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.produk-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0d47a1;
  margin-bottom: 50px;
}

.produk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card-produk {
  background: #fff;
  padding: 40px 25px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.card-produk:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.card-produk .icon {
  width: 60px;
  height: 60px;
  background: #e8f0fe;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d6efd;
  font-size: 28px;
}

.card-produk h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 12px;
}

.card-produk p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}


/* ===== Animasi scroll (fade in + slide up) ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Section ===== */
#mitra {
  background:#f6f9fc;
  padding: 45px 20px;          /* sedikit lebih kecil */
  text-align: center;
}

#mitra h2 {
  font-size: 2rem;
  margin-bottom: 25px;         /* lebih dekat ke slider */
  color: #0d47a1;
  letter-spacing: 1px;
}

.mitra {
  padding: 30px 20px;
  background: #f6f9fc;
}

.mitra h2 {
  margin-bottom: 20px;
  font-size: 26px;
}

/* ===== Logo Grid (jika tidak pakai slider) ===== */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;                   /* **rapat** */
}

.logo {
  max-height: 65px;
  opacity: 1;
  transition: 0.3s;
}

.logo:hover {
  filter: grayscale(0.4);
  transform: scale(1.05);
}

/* ===== Slider Container ===== */
.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100px;              /* tinggi slider */
  background:#f6f9fc;
  padding: 6px 0;
}

/* Track berisi semua logo */
.slide-track {
  display: flex;
  gap: 0;                      /* <= hilangkan jarak horizontal */
  width: max-content;
  animation: scroll 40s linear infinite; /* lambat dan halus */
}

/* Setiap kotak logo */
.slide {
  width: 140px;                /* <= perkecil lebar kotak */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gambar logo */
.slide img {
  max-height: 65px;
  margin: 0;                   /* <= hilangkan margin */
  padding: 0;                  /* <= hilangkan padding */
  transition: 0.3s;
  cursor: pointer;
}

.slide img:hover {
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* Animasi jalan horizontal */
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .slide { width: 110px; }     /* lebih rapat di layar kecil */
  .slide img { max-height: 55px; }
}

@media (max-width: 480px) {
  .slide { width: 90px; }
  .slide img { max-height: 50px; }
}

/* ================= TENTANG ================= */
/*disini mulai bagian header*/
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 150px;
  height: 100vh;
  background-color: white;
  padding: 1.5rem;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.show {
  transform: translateX(0);
}

/* ini sudah mulai bagian profil */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Source Sans 3", sans-serif;
  background: #f8fbff
    url("https://www.transparenttextures.com/patterns/fiber.png") repeat;
  color: #0a3380;
  overflow-x: hidden;
  scroll-behavior: smooth;
  line-height: 1.6;
}
a {
  text-decoration: none;
}

/* Section */
.section-about-jin {
  position: relative;
  overflow: hidden;
  max-width: 100vw;
}
.section-about-jin::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: url("https://svgshare.com/i/tV3.svg") no-repeat bottom center;
  background-size: cover;
  opacity: 0.15;
  pointer-events: none;
  animation: waveFloat 6s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes waveFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
.bg-shape-jin {
  position: absolute;
  top: -220px;
  left: -220px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle at center, #3ea1f7 0%, transparent 70%);
  filter: blur(160px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* Container */
.container-jin {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 15px;
}

/* Content Text */
.content-text-jin {
  flex: 1 1 500px;
  max-width: 600px;
  min-width: 280px;
  padding-right: 15px;
}
.heading-jin {
  font-size: 4rem;
  font-weight: 900;
  position: relative;
  user-select: none;
  margin-bottom: 25px;
  color: #0056b3;
  overflow: hidden;
  margin-top: 0;
  display: flex;
  justify-content: flex-start;
}
.effect-shimmer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -240px;
  width: 180px;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255 255 255 / 0.6) 50%,
    transparent 100%
  );
  animation: shimmer 3s infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes shimmer {
  0% {
    left: -240px;
  }
  100% {
    left: 100%;
  }
}
.para-desc-jin {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #144a7a;
  max-width: 100%;
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  line-height: 1.5;
  word-wrap: break-word;
}
.para-desc-jin.active {
  opacity: 1;
  transform: translateX(0);
}
.highlight-jin {
  color: #106ebf;
  font-weight: 700;
  cursor: pointer;
  animation: pulseHighlight 3.5s ease-in-out infinite;
  transition: color 0.3s ease;
  word-break: break-word;
}
.highlight-jin:hover {
  color: #3ea1f7;
  animation-play-state: paused;
}
@keyframes pulseHighlight {
  0%,
  100% {
    color: #106ebf;
  }
  50% {
    color: #3ea1f7;
  }
}
.values-jin {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 0;
  color: #356bc7;
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  word-wrap: break-word;
}
.values-jin strong {
  font-weight: 700;
  cursor: default;
}
.values-jin.active {
  opacity: 1;
  transform: translateX(0);
}

/* Hide SVG wrapper */
.wrapper-image-jin {
  display: none !important;
}

/* Hero Animation */
.hero-animation {
  flex: 1 1 450px;
  max-width: 550px;
  min-width: 280px;
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center; /* vertical center */
  z-index: 1;
  padding: 0 15px;
  max-height: 550px;
  box-sizing: border-box;
  width: 100%;
  min-height: 300px; /* cukup ruang supaya vertikal center berfungsi */
}
.hero-animation lottie-player {
  width: 100%;
  max-width: 550px;
  height: auto;
  max-height: 550px;
  margin: 0 auto;
}

/* Features Section */
.features-jin {
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
}
.card-feature-jin {
  background: white;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgb(0 82 204 / 0.15);
  padding: 30px 25px;
  flex: 1 1 280px;
  max-width: 320px;
  opacity: 0;
  transform: scale(0.88);
  transition: transform 0.4s ease, box-shadow 0.3s ease, opacity 0.7s ease;
  cursor: default;
  text-align: center;
  box-sizing: border-box;
  word-wrap: break-word;
}
.card-feature-jin.active {
  opacity: 1;
  transform: scale(1);
}
.card-feature-jin:hover {
  transform: scale(1.12);
  box-shadow: 0 15px 30px rgb(16 110 191 / 0.25), 0 0 18px rgb(62 161 247 / 0.4);
}
.card-feature-jin h3 {
  color: #106ebf;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.8rem;
  word-wrap: break-word;
}
.card-feature-jin p {
  color: #073258;
  font-size: 1rem;
  line-height: 1.4;
  word-wrap: break-word;
}

/* Responsive */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  .container-jin {
    gap: 30px;
    flex-wrap: wrap;
  }
  .heading-jin {
    font-size: 3.4rem;
  }
}

/* Tablets and small laptops */
@media (max-width: 768px) {
  .container-jin {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
    padding: 0 15px;
  }
  .content-text-jin {
    max-width: 100%;
    padding-right: 0;
    padding-left: 15px;
    padding-right: 15px;
    max-height: 300px;
  }
  .heading-jin {
    font-size: 2.8rem;
    justify-content: center;
  }
  .hero-animation {
    max-width: 100%;
    flex: none;
    padding: 0;
    max-height: 300px;
    min-height: 250px; /* sesuaikan supaya vertikal center tetap */
  }
  .hero-animation lottie-player {
    max-height: 350px;
  }
  .features-jin {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
  .card-feature-jin {
    max-width: 90%;
    flex: 1 1 100%;
    text-align: center;
  }
}

/* Small phones and large mobiles */
@media (max-width: 480px) {
  .heading-jin {
    font-size: 2.2rem;
  }
  .para-desc-jin {
    font-size: 1rem;
  }
  .values-jin {
    font-size: 1rem;
  }
  .card-feature-jin h3 {
    font-size: 1.4rem;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .section-about-jin {
    padding: 10px 10px;
  }
  .heading-jin {
    font-size: 1.8rem;
  }
  .para-desc-jin {
    font-size: 0.9rem;
  }
  .values-jin {
    font-size: 0.9rem;
  }
  .card-feature-jin {
    padding: 20px 15px;
  }
  .card-feature-jin h3 {
    font-size: 1.2rem;
  }
  .card-feature-jin p {
    font-size: 0.9rem;
  }
}

/* disini adalah bagian footer */
/* Footer Container */
footer {
  background-color:#0d1b32;
  color: #fff;
  margin-top: 20px;
  text-align: justify;
}

/* Grid Layout */
.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 15px 20px;
}

/* Section Styling */
.footer-section h4,
.footer-information h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-information h4 {
  text-align: left;
  margin-left: 100px;
}

.footer-section p,
.footer-links li,
.footer-info li {
  font-size: 14px;
  margin-bottom: 10px;
  margin-right: 30px;
}

/* List Styles */
.footer-links,
.footer-info {
  list-style: none;
  padding: 0;
}

/* Link Styles */
.footer-links a {
  color: #fff;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* Footer Information List */
.footer-informasi {
  list-style: none;
  padding: 0;
  margin-left: 100px;
}

.footer-informasi li {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.footer-informasi a {
  text-decoration: none;
  color: #6c63ff;
  margin-left: 8px;
  font-weight: 500;
  word-break: break-word;
}

/* Icon Image */
.logo-footer {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 8px;
  flex-shrink: 0;
}

/* Copyright Bottom */
.footer-bottom {
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  background-color: #0d47a1;
  color: white;
}

/* Center second column horizontally */
.footer-container .footer-section:nth-child(2) {
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE - Mobile Layout */
@media (max-width: 768px) {
  footer {
    text-align: left;
    font-size: 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 20px 15px;
    gap: 25px;
  }

  .footer-section,
  .footer-information {
    min-width: 100%;
  }

  .footer-section h4,
  .footer-information h4 {
    text-align: left !important;
    margin-left: 0 !important;
    margin-bottom: 12px;
    font-size: 20px;
  }
  .footer-section p,
  .footer-links li,
  .footer-informasi li {
    margin-right: 0;
    margin-bottom: 14px;
    font-size: 15px;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .footer-links a {
    font-weight: 600;
    color: #333;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  .footer-informasi {
    margin-left: 0 !important;
    padding-left: 0;
    max-width: 320px;
    margin: 0 auto;
  }

  .footer-informasi li {
    text-align: left;
    margin-bottom: 18px;
  }

  .footer-informasi li img.logo-footer {
    margin: 0 0 6px 0;
  }

  .footer-informasi a {
    margin-left: 0;
    font-size: 15px;
    word-break: break-word;
  }
}

/* ================= HARGA ================= */

.hero1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 10%;
  min-height: 350px;
  color: #fff;
  background: linear-gradient(rgba(13,71,161,.7), rgba(25,118,210,.7)),
    url("image/img/price.png") no-repeat center/cover;
  overflow: hidden;
  text-align: center;
}

.hero1-left h1 {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 20px;

  opacity: 0;
  transform: translateY(80px);          /* ↓ posisi awal: dari bawah */
  animation: slideUp 1s ease forwards;  /* animasi naik */
  animation-delay: 0.3s;
}

.hero1-left h2 {
  opacity: 0;
  transform: translateY(80px);          /* ↓ posisi awal: dari bawah */
  animation: slideUp 1s ease forwards;  /* animasi naik */
  animation-delay: 0.3s;
}

.hero1-left h3 {
  opacity: 0;
  transform: translateY(80px);          /* ↓ posisi awal: dari bawah */
  animation: slideUp 1s ease forwards;  /* animasi naik */
  animation-delay: 0.3s;
}

.breadcrumb {
  opacity: 0;
  transform: translateY(80px);          /* ↓ posisi awal */
  animation: slideUp 1s ease forwards;  /* animasi naik */
  animation-delay: 0.8s;
}

.breadcrumb a {
  color:#f6f9fc;
  text-decoration: none;
  font-weight: bold;
}

.breadcrumb span {
  margin: 0 6px;
}

.breadcrumb .active {
  color: #f6f9fc;
  font-weight: bold;
}

.superr {
  font-size: 15px;
  text-align: center;
  font-family: Arial, sans-serif;
  margin-top: 5px;
  margin-bottom: 30px;
  color: #555;
}

.paket-box {
  min-width: 280px;
  width: 280px;
  scroll-snap-align: center;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  min-height: 320px;
}

.paket-box h3 {
  color: #2a2a9e;
  text-align: center;
  font-size: 22px;
  border-bottom: 2px solid #2a2a9e;
  padding-bottom: 5px;
}
.paket-box h2 {
  text-align: center;
}
.paket-box p {
  text-align: center;
}
.paket-box button {
  margin-top: 10px;
  background: #2a2a9e;
  color: white;
  border: none;
  padding: 10px;
  width: 80%;
  border-radius: 15px;
  cursor: pointer;
}

/* Keyframes animasi: geser dari bawah + fade */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================= */
/* ======== RESPONSIVE ===== */
/* ========================= */

/* Tablet (≤992px) */
@media (max-width: 992px) {
  .hero1 {
    padding: 50px 8%;
    min-height: 300px;
  }

  .hero1-left h1 {
    font-size: 48px;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .hero1 {
    flex-direction: column;
    padding: 40px 6%;
    min-height: 260px;
  }

  .hero1-left h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .breadcrumb a {
    font-size: 14px;
  }
}

/* HP kecil (≤480px) */
@media (max-width: 480px) {
  .hero1 {
    padding: 30px 5%;
    min-height: 220px;
  }

  .hero1-left h1 {
    font-size: 28px;
  }

  .breadcrumb a {
    font-size: 13px;
  }
}

/* =================== STYLING DASAR =================== */
.paket-section {
  padding: 60px 20px;
  text-align: center;
  background: #f6f9fc;
}

.paket-container {
  max-width: 900px;
  margin: 0 auto;
}

.paket-title {
  font-size: 2rem;
  color: #0d47a1;
  font-weight: 700;
  margin-bottom: 20px;
}

.paket-sub {
  font-size: 1.05rem;
  color: #000;
  max-width: 750px;
  margin: 0 auto;
}

/* Responsif */
@media (max-width: 768px) {
  .paket-title { font-size: 1.6rem; }
  .paket-sub   { font-size: 1rem; padding: 0 10px; }
}

/* =================== ANIMASI SCROLL =================== */
/* Keyframes: muncul dari bawah */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Timeline berbasis scroll */
@scroll-timeline paketTimeline {
  source: auto;            /* otomatis mengikuti viewport */
  orientation: block;      /* vertical scroll */
  scroll-offsets: (enter 80%, exit 20%);
}

/* Terapkan animasi ke section */
.paket-section {
  /* Pastikan animasi tidak jalan sebelum discroll */
  opacity: 0;
  transform: translateY(80px);

  animation: slideUp 2s ease forwards;
  animation-timeline: paketTimeline;
  /* Animasi aktif saat elemen masuk viewport */
  animation-range: entry 80% cover 30%;
}

/* Carousel Wrapper */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing1-container {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 40px;
  scrollbar-width: none;
  margin-bottom: 100px;
}
.pricing1-container::-webkit-scrollbar{display:none;}

/* Card */
.card2 {
  flex: 0 0 280px;
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  transition: 0.3s;
  text-align: center;
  position: relative;
  z-index: 1;  /* dasar */
}
.card2:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  z-index: 2;  /* tetap di bawah panah */
}
.title2 {
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: #fff;
  padding: 8px 16px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 14px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
}
.speed {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}
.desc {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #555;
}
.device {
  display: flex;
  gap: 6px;
  margin: auto;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #444;
  justify-content: center;
}
.device i {
  color: #0d47a1;
  margin-right: 6px;
}
.price {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #111;
}
.price span {
  font-size: 0.9rem;
  color: #777;
}
.btn {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.3s;
}
.btn:hover {
  background: linear-gradient(135deg, #08306b, #0d47a1);
  transform: translateY(-4px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}

/* Panah kiri/kanan */
.nav-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #0d47a1;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
  z-index: 99; /* selalu di atas card */
}
.nav-arrow:hover {background:#0056b3;}
.nav-left {left:15px;}
.nav-right {right:15px;}

/* Reset dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Section Harga */
.harga-section {
  width: 100%;
  min-height: 80vh; /* tinggi area, bisa disesuaikan */
  background:
    url("harga-bg.jpg")       /* ganti dengan nama file gambar harga */
    center center / contain   /* contain agar seluruh gambar terlihat utuh */
    no-repeat;
  background-color: #0d47a1;   /* warna cadangan bila ada ruang kosong */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.harga-content h1 {
  color: #fff;
  font-size: clamp(28px, 6vw, 60px);
  font-weight: 700;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
  margin-bottom: 15px;
}

.harga-content p {
  color: #f1f1f1;
  font-size: clamp(16px, 3vw, 20px);
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #1565c0;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s;
}
.btn:hover {
  background: #0b3fa4;
}

/* ================= KONTAK ================= */
/* ===== HERO IMAGE HEADER ===== */
.hero1-contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  min-height: 350px;
  padding: 60px 20px;
  background: linear-gradient(rgba(13, 71, 161, .7), rgba(25, 118, 210, .7)),
             url("/image/img/kontak.png") center/cover no-repeat;
  overflow: hidden;
}

.hero1-content {
  max-width: 700px;
  opacity: 0;
  transform: translateY(80px);
  animation: slideUp 1s ease forwards;
}

.hero1-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero1-content p {
  font-size: 20px;
  font-weight: 400;
}

/* Animasi Slide Up */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 992px) {
  .hero1-content h1 { font-size: 44px; }
}

@media (max-width: 768px) {
  .hero1-contact { min-height: 240px; padding: 40px 10px; }
  .hero1-content h1 { font-size: 36px; }
  .hero1-content p { font-size: 16px; }
}

@media (max-width: 480px) {
  .hero1-contact { min-height: 200px; padding: 30px 8px; }
  .hero1-content h1 { font-size: 26px; }
  .hero1-content p { font-size: 14px; }
}

.contact-card {
  padding: 30px 20px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  border: 1px solid rgba(0,0,0,0.03);
}

.contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}

.contact-card i {
  font-size: 2.8rem;
  color: #0d6efd; /* biru elegan */
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.contact-card:hover i {
  color: #0b5ed7; /* sedikit lebih gelap saat hover */
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #222;
}

.contact-card p {
  font-size: 0.95rem;body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f7f9fc;
  color: #333;
}

.office-section {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

/* === Left Column === */
.office-left {
  flex: 1 1 65%;
  background: #f7f9fc;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  color: #0050a3;
  text-align: center;
  margin-bottom: 5px;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 25px;
}

.office-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #dce3ed;
}

.office-tabs .tab {
  background: none;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 0;
  color: #333;
  position: relative;
  cursor: pointer;
}

.office-tabs .tab.active {
  color: #0050a3;
}

.office-tabs .tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: #0050a3;
  border-radius: 2px;
}

/* Info Cards */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

.info-card {
  background: #fff;
  border: 1px solid #e5eaf1;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-card .icon {
  font-size: 2rem;
  color: #0050a3;
  margin-bottom: 15px;
}

.info-card h3 {
  color: #0050a3;
  margin-bottom: 10px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* === Right Column === */
.customer-card {
  flex: 1 1 30%;
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.customer-card h3 {
  font-size: 1.4rem;
  color: #002b5c;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 2px solid #e5eaf1;
  padding-bottom: 10px;
}

.cs-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.cs-item i {
  font-size: 1.5rem;
  color: #0050a3;
  margin-top: 2px;
}

.cs-item h4 {
  font-size: 1rem;
  color: #0050a3;
  margin-bottom: 4px;
}

.cs-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}

/* Responsif */
@media (max-width: 992px) {
  .office-section {
    flex-direction: column;
  }
  .customer-card {
    max-width: 100%;
  }
}

  color: #555;
  margin: 0;
}

.contact-card a {
  display: inline-block;
  margin-top: 6px;
  color: #0d6efd;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: #0b5ed7;
  text-decoration: underline;
}

body {
 font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f6f9fc;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .contact-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;   /* supaya tinggi sama */
    flex-wrap: wrap;        /* biar responsif di layar kecil */
    gap: 20px;
    padding: 20px;
    background: #f6f9fc;
  }

  .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    padding: 20px;
    text-align: center;
    background: #f8fafc; /* sedikit abu-abu terang agar kontras dengan card */
  }

  .features-jin {
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
  }

}

/* ================= Left Content ================= */
.office-container {
  flex: 2;
  background: #f6f9fc;
}

.title {
  text-align: center;
  color: #0b3d91;
  font-size: 28px;
  margin-bottom: 5px;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
}

.tab-menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.tab {
  background: none;
  border: none;
  font-weight: bold;
  color: #0b3d91;
  font-size: 16px;
  padding-bottom: 6px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all .3s;
}
.tab.active {
  border-bottom: 3px solid #0b3d91;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.card .icon {
  width: 60px;
  height: 60px;
  background: #f1f3f8;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #0b3d91;
}

.card h3 {
  color: #0b3d91;
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  color: #555;
  line-height: 1.5;
}

/* ================= Customer Service Box ================= */
.customer-box {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.customer-box h2 {
  color: #0b3d91;
  margin-bottom: 25px;
  text-align: left;
  font-size: 22px;
}

.cs-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.cs-item i {
  color: #0b3d91;
  font-size: 24px;
}

.cs-item h4 {
  color: #0b3d91;
  margin: 0 0 5px;
  font-size: 16px;
}

.cs-item p {
  color: #555;
  margin: 0;
  font-size: 15px;
}

/* Responsive */
@media (max-width:768px){
  .contact-section { padding: 20px; }
  .customer-box { width: 100%; }
}

.customer-box {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  /* Posisi awal */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out; /* lebih lambat */
}

.customer-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form{
  flex: 1 1 48%;          /* masing-masing ambil sekitar setengah */
  min-width: 320px;       /* biar tidak terlalu kecil di layar kecil */
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.map {
  flex: 1 1 48%;          /* masing-masing ambil sekitar setengah */
  min-width: 320px;       /* biar tidak terlalu kecil di layar kecil */
  background: #fff;
  margin: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.contact-form h2,
.map h2 {
  margin-bottom: 20px;
  text-align: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-form button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0056b3;
}

.contact-quote {
  margin-top: 20px;
  font-style: italic;
  font-size: 14px;
  color: #555;
  text-align: center;
}

.map iframe {
  flex: 1;
  width: 100%;
  min-height: 350px;
  border: none;
  border-radius: 8px;
}
.location-section {
  text-align: center;
  padding: 50px 20px;
  background: #f9fbfd;
}

.location-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: #333;
}

.location-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap; /* biar responsif */
}

.map-box {
  flex: 1 1 500px;
  min-width: 300px;
}

.map-box iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}



/* ================= Animasi Scroll (halus & hanya masuk sekali) ================= */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);               /* jarak lebih kecil agar lembut */
  transition: opacity 1s ease-out, transform 1s ease-out; /* durasi lebih lama */
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FAQ Intro Section ===== */
.faq-intro {
  position: relative;
  background: #0d47a1;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

/* dekorasi lingkaran */
.faq-intro::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -100px;
  left: -100px;
}

.faq-intro::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -80px;
  right: -80px;
}

/* Ikon tanda tanya */
.faq-icon {
  font-size: 60px;
  margin-bottom: 15px;
  display: inline-block;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

/* Title */
.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s; /* muncul setelah icon */
}

/* Subtitle */
.faq-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e3f2fd;
  max-width: 750px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s; /* muncul paling akhir */
}

/* Animasi fade + slide */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.faq-item input { display: none; }

.faq-item label {
  display: block;
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.faq-item label:hover { background: #e3f2fd; }

.faq-item label::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 22px;
  transition: transform 0.3s;
}

.faq-item input:checked + label::after {
  content: '–';
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #fafafa;
  transition: all 0.3s ease;
}

.faq-item input:checked ~ .faq-content {
  max-height: 300px;
  padding: 20px;
}
/* ===== Animasi fade + slide ===== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== FAQ Accordion ===== */
.container {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
}
.container h1 {
  color:#0d47a1 ;
  text-align: center;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.faq-item input { display: none; }

.faq-item label {
  display: block;
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.faq-item label:hover { background: #e3f2fd; }

.faq-item label::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 22px;
  transition: transform 0.3s;
}

.faq-item input:checked + label::after {
  content: '–';
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #fafafa;
  transition: all 0.3s ease;
}

.faq-item input:checked ~ .faq-content {
  max-height: 300px;
  padding: 20px;
}


/* Default elemen disembunyikan */
.faq-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Saat dapat class "show" */
.faq-item.show {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp 0.6s ease forwards;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; margin-bottom: 30px; }
  .hero-image img { max-width: 350px; }
  .features { flex-direction: column; }
  main { padding: 20px; margin: 15px; }
  .visi-misi { flex-direction: column; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
}
