/* Reset & Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  overflow-x: hidden;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: #d3d3d3;
  padding: 30px 0;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 80px;
  height: auto;
}

.text-header h1 {
  font-size: 28px;
  font-weight: 700;
}

.text-header p {
  font-size: 16px;
  font-style: italic;
}

/* Profile Section */
.profile {
  padding: 80px 0 60px;
}

.profile-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.profile-content,
.side-image {
  flex: 1 1 50%;
}

.profile-content {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.profile-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 24px;
}

.btn-lanjut {
  font-family: 'Inter', sans-serif;
  display: inline-block;
  padding: 10px 20px;
  background-color: #444;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 300; /* Ubah dari 600 ke 300 untuk light */
  transition: background-color 0.3s ease;
}

.btn-lanjut:hover {
  background-color: #222;
}

/* Gambar di kanan */
.side-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.side-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: cover;
}

/* Layanan Section */
.layanan {
  background-color: #f9f9f9;
  padding: 60px 0 80px;
  margin-top: 300px;
}

.layanan h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
}

/* Layanan Box Style */
.layanan ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style-type: none;
  padding-left: 0;
  margin: 0 auto;
  max-width: 1000px;
}

.layanan li {
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #444;
  line-height: 1.6;
  transition: transform 0.3s ease;
}

.layanan li:hover {
  transform: translateY(-5px);
}

/* WhatsApp Floating */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 1000;
}

.wa-float img {
  width: 60px;
  height: 60px;
}

.wa-text {
  background-color: #25d366;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 300;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

/* FIX: Ganti class .show jadi .wa-show agar tidak bentrok */
.wa-text.wa-show {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 576px) {
  .wa-text {
    white-space: normal;
    max-width: 200px;
    line-height: 1.4;
  }
}

/* Footer */
footer {
  background-color: #d3d3d3;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  margin-top: 60px;
}

/* Responsive (Mobile/Tablet) */
@media (max-width: 1024px) {
  .layanan ol {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .profile-flex {
    flex-direction: column;
    align-items: center;
  }

  .profile-content,
  .side-image {
    flex: 1 1 100%;
  }

  .side-image img {
    max-width: 100%;
  }

  .layanan ol {
    grid-template-columns: 1fr;
  }
}

.klien {
  background-color: #f9f9f9;
  padding: 60px 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.klien h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  font-family: 'Inter', sans-serif;
}

.klien-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.klien-slider {
  display: flex;
  gap: 40px;
  animation: slideClients 90s linear infinite;
  width: max-content;
  align-items: center;
}

.klien-slider img {
  height: 60px;
  object-fit: contain;
  filter: none; /* pastikan bukan grayscale */
}

/* Animasi geser otomatis */
@keyframes slideClients {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .klien-slider {
    gap: 20px;
  }

  .klien-slider img {
    height: 40px;
  }
}

@keyframes slideKlien {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .klien-slider {
    gap: 24px;
  }

  .klien-slider img {
    height: 60px;
  }
}

.motto {
  background-color: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.motto blockquote {
  margin: 0 auto;
  max-width: 800px;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.6;
  color: #333;
}

.motto cite {
  display: block;
  margin-top: 20px;
  font-size: 1.2rem;
  color: #777;
}
.footer {
  background-color: #d3d3d3; /* warna sama seperti header */
  color: black;
  padding: 40px 20px 20px 20px;
  font-family: 'Poppins', sans-serif;
  margin-top: 0;
  padding-top: 40px;  
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  flex: 1 1 300px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 0.95rem;
  color: black;
  line-height: 1.6;
}

.footer-right {
  flex: 2 1 400px;
  text-align: left;
}

.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: black;
  font-weight: 500;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 0.95rem;
  color: black;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  fill: black;
  flex-shrink: 0;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
}

.footer-contact a {
  color: black;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  background-color: #d3d3d3;
  color: black;
  border-top: 1px solid #333;
  padding-top: 20px;
}

