/* Custom style khusus untuk halaman service-detail dan service-item-detail */
body {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}
.header {
  background: #060606 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 0.7rem 0;
  z-index: 1030;
}
.logo .sitename {
  font-weight: 700;
  color: #fff !important;
  letter-spacing: 1px;
  font-size: 1.5rem;
  margin: 0;
}
.navmenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.navmenu ul li {
  margin-right: 1.5rem;
}
.navmenu ul li:last-child {
  margin-right: 0;
}
.navmenu ul li a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 1rem;
  padding: 0.3rem 0.5rem;
}
.navmenu ul li a.active, .navmenu ul li a:hover {
  color: #4a90e2;
}
.language-switcher-btn .btn {
  background: #222;
  border: none;
  font-size: 1.5rem;
  padding: 0.2rem 0.7rem;
  color: #fff;
}
.dropdown-menu {
  min-width: 2.5rem;
  text-align: center;
  background: #222;
  color: #fff;
  border: none;
}
.dropdown-item {
  font-size: 1.3rem;
  padding: 0.3rem 0.5rem;
  color: #fff;
  background: #222;
}
.dropdown-item:hover {
  background: #333;
  color: #4a90e2;
}
.service-detail-container {
  max-width: 700px;
  margin: 60px auto 0 auto;
  padding: 40px 30px 32px 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(74,144,226,0.10);
  text-align: left;
  position: relative;
  z-index: 2;
}
.service-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
  color: #2c3e50;
  letter-spacing: 0.5px;
}
.info-contact {
  margin-top: 40px;
  font-size: 1.1rem;
  color: #4a90e2;
  font-weight: 500;
  text-align: center;
}
.service-content {
  font-size: 1.13rem;
  margin-bottom: 24px;
  color: #444;
}
.icon-service {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: #4a90e2;
  margin-bottom: 18px;
}
.btn-back {
  display: block;
  margin: 0 auto;
  max-width: 220px;
  font-weight: 500;
  border-radius: 8px;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .navmenu ul {
    flex-direction: column;
    background: #060606;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    display: none;
  }
  .navmenu ul.show {
    display: flex;
  }
  .navmenu ul li {
    margin: 0.7rem 0;
  }
  .language-switcher-btn {
    margin-top: 0.5rem;
  }
}
@media (max-width: 768px) {
  .service-detail-container {
    margin: 30px 8px 0 8px;
    padding: 24px 10px 20px 10px;
  }
  .service-title {
    font-size: 1.3rem;
  }
} 