:root {
  --accent: #1e3a8a;
  --accent-dark: #12205a;
}

body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.btn-main {
  background: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-main:hover {
  background: var(--accent-dark);
}

.btn-add {
  background: var(--accent);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

.btn-add:hover {
  background: var(--accent-dark);
}

.service-card {
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.service-img {
  border-radius: 0.75rem;
  height: 180px;
  object-fit: cover;
  width: 100%;
}

.product-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 200px; /* bisa disesuaikan: 180–240px */
  object-fit: contain; /* tidak crop, menampilkan seluruh gambar */
  background-color: #f3f4f6; /* abu-abu muda biar rapi */
  padding: 8px; /* beri jarak biar tidak nempel */
  border-radius: 0.5rem;
}


.wa-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.wa-float:hover {
  transform: scale(1.05);
}

.wa-float img {
  width: 28px;
  height: 28px;
}
