/* Import Font Anteb (contoh via CDN atau file lokal) */
@import url('https://fonts.cdnfonts.com/css/anteb');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap');

/* ===== Sambutan ===== */
.welcome-section {
  background-color: #34422f;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.welcome-text h2 {
  font-family: 'Anteb', sans-serif;
  text-transform: uppercase;
  font-size: 32px;
  color: #ffe680;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.welcome-text p {
  font-family: 'Helvetica', sans-serif;
  color: #e8f5e9;
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== Garis Pemisah ===== */
.section-separator {
  height: 4px;
  background-color: #ffe680;
  width: 100%;
}

/* ===== Layanan ===== */
.layanan-section {
  background-color: #34422f;
  padding: 40px 0;
  position: relative;
}

.layanan-section h3 {
  font-family: 'Anteb', sans-serif;
  text-align: center;
  color: #ffd700;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 26px;
}

.layanan-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.layanan-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  max-width: 90%;
}

.layanan-slider::-webkit-scrollbar {
  display: none;
}

/* ===== Tombol Scroll ===== */
.scroll-btn {
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffe680;
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s;
  z-index: 5;
}

.scroll-btn:hover {
  background-color: rgba(255, 255, 255, 0.35);
}

.scroll-btn.left {
  position: absolute;
  left: 20px;
}

.scroll-btn.right {
  position: absolute;
  right: 20px;
}

/* ===== Card ===== */
.layanan-card {
  flex: 0 0 auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  text-align: center;
  width: 300px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.layanan-card:hover {
  transform: translateY(-5px);
}

.layanan-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.layanan-card h4 {
  margin: 10px 0 5px;
  color: #34422f;
  font-size: 18px;
  text-transform: uppercase;
}

.layanan-card p {
  color: #555;
  font-size: 14px;
  padding: 0 10px;
  flex-grow: 1;
}

.bidang {
  display: inline-block;
  margin: 10px 15px;
  background-color: #6eaa5e;
  color: #34422f;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 13px;
}

/* ===== Tombol Lihat Semua ===== */
.lihat-semua-container {
  text-align: center;
  margin-top: 30px;
}

.lihat-semua-btn {
  background-color: #FFD700;
  color: #34422f;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.lihat-semua-btn:hover {
  background-color: #ffffff;
  color: #2d3a28;
}
