/* -------------------------
  General Styles
------------------------- */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.img-fluid {
  border-radius: 8px;
  transition: transform 0.3s;
}

.img-fluid:hover {
  transform: scale(1.03);
}

.fade-up {
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* -------------------------
  Typography
------------------------- */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1d3557;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #5f5f5f;
  max-width: 700px;
  margin: 0 auto;
}

.blue-title {
  color: #007bff;
}

.brand-text {
  color: #007bff;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.highlight-title {
  background: linear-gradient(to right, #0d6efd, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* -------------------------
  Section: Deskripsi
------------------------- */
.desc-box {
  background: linear-gradient(135deg, #f0f0f0 50%, #ffffff 50%);
  border-left: 4px solid #007bff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.06);
  transition: all 0.3s ease-in-out;
}

.desc-box:hover {
  background: linear-gradient(135deg, #e0f0ff 50%, #f5fbff 50%);
  transform: translateY(-3px);
}

.desc-box h5 {
  color: #0056b3;
  font-weight: 600;
  margin-bottom: 10px;
}

.desc-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* -------------------------
  Section: Spesifikasi Box
------------------------- */
.spec-box {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.03);
}

.spec-box h4 {
  color: #0056b3;
  font-weight: 700;
}

.spec-box ul li {
  background-color: transparent;
  border: none;
  color: #333;
  font-size: 1rem;
}

/* -------------------------
  Section: Gallery Cards
------------------------- */
.gallery-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  height: 180px;
  object-fit: cover;
}

/* -------------------------
  Section: Client Box
------------------------- */
.client-box {
  background-color: #fefefe;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.client-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* -------------------------
  Utility: List Icons
------------------------- */
.list-group-item {
  border: none;
  padding: 10px 0 10px 1.8rem;
  font-size: 0.95rem;
  position: relative;
}

.list-group-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

/* -------------------------
  Responsive Adjustments
------------------------- */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .desc-box {
    margin-top: 20px;
  }
}
