* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f8f9fa;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header {
  background: #0b2c4d;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 48px;   /* ⬅️ ubah ini untuk besar-kecil logo */
  width: auto;    /* jaga rasio */
}

.logo span {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
}

.nav {
  margin-top: 10px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  margin-right: 15px;
  font-size: 14px;
}

.nav a:hover {
  text-decoration: underline;
}

.hero {
  background: #123a63;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

.footer {
  background: #0b2c4d;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 60px;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav a.active {
  text-decoration: underline;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.fleet-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  padding-bottom: 20px;
}

.fleet-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.fleet-card h3 {
  margin: 15px 0 5px;
}

.fleet-card p {
  font-size: 14px;
  color: #666;
}

.fleet-card button {
  margin-top: 10px;
  padding: 8px 15px;
  background: #0b2c4d;
  color: #fff;
  border: none;
  cursor: pointer;
}

.fleet-card button:hover {
  background: #123a63;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  max-width: 500px;
  margin: 10% auto;
  padding: 25px;
  border-radius: 6px;
}

.modal-content ul {
  margin-top: 15px;
}

.modal-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
}
.org-chart {
  text-align: center;
  margin-top: 40px;
}

.org-level {
  margin-bottom: 30px;
}

.org-level.managers {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.org-box {
  background: #fff;
  border: 2px solid #0b2c4d;
  padding: 15px 20px;
  min-width: 200px;
  border-radius: 6px;
}

.org-box strong {
  color: #0b2c4d;
}

.org-box span {
  display: block;
  margin-top: 8px;
  font-weight: bold;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 4px;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}

.lightbox-img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  margin: 5% auto;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.customer-list {
  margin-top: 30px;
  list-style: none;
}

.customer-list li {
  background: #fff;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-left: 5px solid #0b2c4d;
  border-radius: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.contact-info p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  padding: 10px 20px;
  background: #0b2c4d;
  color: #fff;
  border: none;
  cursor: pointer;
}

.contact-form button:hover {
  background: #123a63;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.bg-light {
  background: #f2f4f7;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.snapshot-box {
  background: #fff;
  padding: 20px;
  border-left: 5px solid #0b2c4d;
  border-radius: 4px;
  text-align: center;
}

.cta {
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0b2c4d;
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
}

.btn-outline {
  background: transparent;
  color: #0b2c4d;
  border: 2px solid #0b2c4d;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.values-list li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }
}
/* HOME FULLSCREEN */
body.home {
  margin: 0;
  overflow: hidden;
}

.slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* HEADER OVERLAY */
.header-overlay {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(11, 44, 77, 0.75);
  z-index: 10;
}
@media (max-width: 768px) {

  .container {
    width: 95%;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 16px;
  }

  p, li {
    font-size: 14px;
  }

}
