body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #2b2b2b;
  background: #fbf8ef;
}

.logo {
  width: 90px;
  height: auto;
}

.gambar {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Limit hero image width for better balance */
.hero-img {
  max-width: 420px;
}

.icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.hero {
  padding-top: 60px;
  padding-bottom: 60px;
}

.headtext {
  margin-top: 10px;
  font-weight: 700;
  font-size: 2.25rem;
  color: #073763;
}

section {
  padding: 60px 0;
}

.layanan,
.tentangkami,
.kontakkami,
.ulasan {
  background: transparent;
}

.des {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: #464646;
  line-height: 1.7;
}

.navbar {
  font-family: 'Poppins', sans-serif;
}

.navbar .nav-link {
  color: #2b2b2b !important;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: #0d6efd !important;
}

.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(10, 10, 20, 0.06);
}

.card .card-body {
  color: #333;
}

.card-title {
  font-weight: 700;
}

.badge {
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(90deg,#0d6efd 0%,#0069d9 100%);
  border: none;
  border-radius: 28px;
  padding: 10px 26px;
  box-shadow: 0 6px 18px rgba(13,110,253,0.18);
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(13,110,253,0.22);
}

.btn-success {
  border-radius: 28px;
  padding: 10px 26px;
}

section h2 {
  font-weight: 700;
  font-size: 1.9rem;
  color: #073763;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
}

#ulasanCarousel .card {
  margin: 0 auto;
  max-width: 700px;
}

/* Process cards styling */
.process-card {
  background: #fbfeff;
  border: 1px solid rgba(7,55,99,0.06);
  transition: transform .12s ease, box-shadow .12s ease;
}
.process-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(7,55,99,0.06); }
.process-badge {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  background: #3b82c4;
  color: #fff;
  font-weight: 700;
  margin: 0 auto;
  font-size: 1.1rem;
}
.process-card .icon { width: 72px; height: 72px; }

/* Contact section styles */
.contact-card {
  background: #ffffff;
  border: 1px solid rgba(7,55,99,0.06);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(7,55,99,0.04);
  text-align: center;
}
.contact-cta { border-radius: 28px; padding: 10px 20px; }

@media (max-width: 575px) {
  .contact-card { padding: 18px !important; }
}

/* Rata kiri-kanan (justify) untuk paragraf agar teks rata kiri dan kanan */
section p,
.card-text,
.des,
.lead,
.contact-card p {
  text-align: justify;
  text-justify: inter-word;
}

/* Pada layar kecil, gunakan left-aligned untuk keterbacaan */
@media (max-width: 575px) {
  section p,
  .card-text,
  .des,
  .lead,
  .contact-card p {
    text-align: left;
  }
}

/* Auto polish: tidy typography, colors, spacing, buttons */
:root{
  --primary: #3b82c4;
  --muted: #6b7280;
  --card-bg: #ffffff;
}

html { font-size: 16px; }
body { background: #f8fafc; color: #0f172a; }

h1.headtext { font-size: 2rem; line-height: 1.15; color: #07223a; }
section { padding: 56px 0; }

.navbar .nav-link { color: #334155 !important; font-weight: 600; }
.navbar .nav-link:hover { color: var(--primary) !important; }

.card, .contact-card, .process-card { border-radius: 12px; }
.card { background: var(--card-bg); }

.btn-primary { background: var(--primary) !important; border: none !important; box-shadow: none !important; }
.btn-outline-primary { color: var(--primary); border-color: rgba(59,130,246,0.25); }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,0.15); }

/* Carousel control contrast */
.carousel-control-prev-icon, .carousel-control-next-icon { filter: drop-shadow(0 2px 6px rgba(7,55,99,0.2)); }

/* Remove heavy shadows on small screens */
@media (max-width: 767px) {
  .card, .contact-card, .process-card { box-shadow: 0 6px 18px rgba(7,55,99,0.04); }
  h1.headtext { font-size: 1.5rem; }
}


/* Simulasi input sizing */
#simulasi input {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .headtext { font-size: 2.6rem; }
}

@media (max-width: 767px) {
  .headtext { font-size: 1.6rem; text-align: center; }
  .gambar { object-fit: contain; height: auto; }
  .btn-lg { width: 100%; }
  .card { margin-bottom: 12px; }
  .container { padding-left: 16px; padding-right: 16px; }
}

/* Soften section backgrounds and reduce contrast */
section {
  background-color: #e6f3fb; /* much lighter blue */
  color: #073763; /* dark blue text for comfortable contrast */
}

section h2,
section p,
section .des,
section .navbar-text,
section .nav-link {
  color: #073763 !important;
}

/* Keep cards gently elevated but not stark */
section .card {
  background: #fbfeff; /* very soft off-white */
  color: #1f2937;
  border: 1px solid rgba(7,55,99,0.06);
  box-shadow: 0 6px 18px rgba(7,55,99,0.04);
}

/* Buttons: muted tones to avoid aggressive contrast */
section a.btn,
section .btn {
  color: #ffffff;
}

.btn-primary {
  background: linear-gradient(90deg,#4a90d9 0%,#3b82c4 100%);
  box-shadow: none;
}

.btn-primary:hover {
  transform: none;
  filter: brightness(0.98);
  box-shadow: 0 6px 18px rgba(59,130,196,0.08);
}

/* Slightly reduce hero padding now sections are lighter */
.hero {
  background: #ffffff;
  border-radius: 12px;
  padding: 48px 24px;
  box-shadow: 0 14px 40px rgba(7,55,99,0.06);
}

  