/* Styling kustom */
body {
  font-family: "Inter", sans-serif;
  background-color: #f8f9fa;
  color: #343a40;
  padding-bottom: 40px; /* Sesuaikan tingginya jika perlu */
}
.navbar-brand {
  font-weight: 700;
  color: #007bff !important;
}
.nav-link {
  font-weight: 500;
  color: #495057 !important;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #007bff !important;
}
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../assets/kantor.jpg"); /* Placeholder for office image */
  background-size: cover;
  background-position: center;
  color: white;
  height: 90vh;
  padding: 100px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 40px;
}
.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  border-radius: 25px;
  padding: 10px 30px;
  font-weight: 600;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}
.section-padding {
  padding: 80px 0;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}
.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #007bff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  border-radius: 2px;
}
.card {
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Memastikan tinggi kartu seragam */
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
.card-body {
  padding: 30px;
}
.card-icon {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 20px;
}
.ceo-section {
  background-color: #e9ecef;
  padding: 80px 0;
}
.ceo-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #007bff;
  margin-bottom: 20px;
}
.vision-mission-item {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.service-item-img {
  /* Changed from .service-item img to be more specific */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.footer {
  background-color: #343a40;
  color: white;
  padding: 50px 0;
  font-size: 0.9rem;
}
.footer a {
  color: #007bff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 5vh;
  width: 100%;
  background-color: #212529; /* Warna latar */
  color: #f8f9fa; /* Warna teks */
  text-align: center;
  padding: 8px 10px;
  font-size: 14px;
  z-index: 1030; /* Supaya di atas konten lain */
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
}
.responsive-map-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.responsive-map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Responsiveness adjustments */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .ceo-image {
    width: 150px;
    height: 150px;
  }
}
/* DARK MODE SUPPORT */
body.dark-mode {
  background-color: #181a1b !important;
  color: #e0e0e0 !important;
}
body.dark-mode .navbar,
body.dark-mode .navbar-light,
body.dark-mode .bg-light {
  background-color: #23272b !important;
  color: #e0e0e0 !important;
}
body.dark-mode .navbar-brand,
body.dark-mode .nav-link {
  color: #e0e0e0 !important;
}
body.dark-mode .nav-link:hover {
  color: #66b2ff !important;
}
body.dark-mode .hero-section {
  background: linear-gradient(rgba(24, 26, 27, 0.8), rgba(24, 26, 27, 0.8)),
    url("../assets/kantor.jpg");
  color: #fff;
}
body.dark-mode .section-title {
  color: #66b2ff;
}
body.dark-mode .section-title::after {
  background-color: #66b2ff;
}
body.dark-mode .card,
body.dark-mode .vision-mission-item {
  background-color: #23272b;
  color: #e0e0e0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
body.dark-mode .card-title,
body.dark-mode .card-icon {
  color: #66b2ff !important;
}
body.dark-mode .btn-primary {
  background-color: #0056b3;
  border-color: #0056b3;
}
body.dark-mode .btn-primary:hover {
  background-color: #007bff;
  border-color: #007bff;
}
body.dark-mode .footer,
body.dark-mode .footer-fixed {
  background-color: #181a1b !important;
  color: #e0e0e0 !important;
}
body.dark-mode .footer a {
  color: #66b2ff;
}
body.dark-mode .responsive-map-container {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
body.dark-mode input,
body.dark-mode textarea {
  background-color: #23272b;
  color: #e0e0e0;
  border-color: #444;
}
body.dark-mode input:focus,
body.dark-mode textarea:focus {
  background-color: #23272b;
  color: #fff;
  border-color: #66b2ff;
}
body.dark-mode .form-label {
  color: #e0e0e0;
}
body.dark-mode .bg-light {
  background-color: #23272b !important;
}
body.dark-mode .ceo-section {
  background-color: #23272b;
}
