/* =====================================================
   DASAR
===================================================== */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #169880;
  color: #fff;
  margin: 0;
  overflow-x: hidden;
}

/* WARNA UTAMA */
.text-gold { color: #61FEE1 !important; }
.text-gold2 { color: #106F60 !important; }
.bg-gold { background-color: #106F60 !important; }

/* TOMBOL UMUM */
.btn-lihat-semua {
  background: transparent;
  color: #106F60;
  border: 2px solid #106F60;
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-lihat-semua:hover {
  background: #106F60;
  color: #fff;
  box-shadow: 0 4px 12px rgba(16, 111, 96, 0.3);
}

/* =====================================================
   TOP BAR
===================================================== */
.top-bar {
  background: #106F60;
  color: #fff;
  font-size: 0.9rem;
  padding: 6px 0;
  position: relative;
  z-index: 1100;
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  gap: 20px;
}
.top-bar .contact-info,
.top-bar .social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-bar a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}
.top-bar a:hover { opacity: 0.8; }

/* Tampil di mobile juga */
.top-bar.d-none.d-lg-block { display: block !important; }

@media (max-width: 991px) {
  .top-bar { padding: 8px 0; }
  .top-bar .container { justify-content: flex-start; gap: 10px; }
  .top-bar a { font-size: 0.85rem; }
}

/* =====================================================
   NAVBAR
===================================================== */
#mainNav {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  padding: 12px 0;
  z-index: 1200;
}
.navbar-brand {
  color: #106F60 !important;
  font-weight: 700;
  font-size: 1.25rem;
}
.navbar-brand .logo { height: 40px; width: auto; }
.navbar-brand .brand-text { color: #106F60; }
.navbar-nav .nav-link {
  color: #106F60 !important;
  font-weight: 600;
  margin: 0 10px;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover { color: #169880 !important; }

/* Tombol hamburger */
.hamburger {
  width: 28px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  background-color: #106F60;
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Tombol X di dalam menu */
.close-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  border: 2px solid #106F60;
  color: #106F60;
  font-size: 1.5rem;
  font-weight: bold;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1350;
}

/* =====================================================
   MENU MOBILE
===================================================== */
@media (max-width: 991px) {
  .hamburger { display: flex; }


#navbarNav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 340px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -6px 0 20px rgba(0,0,0,0.15);
  padding-top: 60px; /* buat agak ke bawah */
  transition: right 0.4s ease;
  text-align: left;
  z-index: 1300;
}


  #navbarNav.show { right: 0; }
  .close-btn { display: flex; }

  #navbarNav .nav-item { width: 100%; }

#navbarNav .nav-link {
  display: block;
  width: 100%;
  text-align: left;  /* biar teks rata kiri */
  color: #106F60 !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: padding-left 0.3s ease, background 0.3s ease;
}

  #navbarNav .nav-link:hover {
    background: rgba(97,254,225,0.08);
    padding-left: 20px;
  }
}

/* =====================================================
   HERO
===================================================== */
.hero-banner {
  height: 100vh;
  background: url('../img/hero.jpg') center/cover no-repeat;
  position: relative;
}
.hero-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-banner h1, .hero-banner p {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 0 15px rgba(255,255,255,0.8);
}
.hero-banner .btn-gold-modern { position: relative; z-index: 2; }

/* Tombol modern */
.btn-gold-modern {
  background: linear-gradient(135deg, #36B09B, #61FEE1);
  color: #106F60;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(97,254,225,0.6);
  transition: all 0.3s ease;
}
.btn-gold-modern:hover {
  background: linear-gradient(135deg, #61FEE1, #36B09B);
  color: #169880;
  transform: translateY(-3px);
}

/* =====================================================
   WHY SECTION
===================================================== */
.why-section {
  background: linear-gradient(135deg, #0f5f52, #169880);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 70%);
}
.why-section h2 {
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 10px;
}
.why-section p {
  color: #e8f7f3;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 0.95rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 992px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
.why-item {
  background: #fff;
  color: #106F60;
  border-radius: 14px;
  padding: 20px 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
}
.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.icon-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #61FEE1, #36B09B);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.why-item:hover .icon-circle { transform: scale(1.1); }
.why-item h5 { font-weight: 700; font-size: 1rem; color: #106F60; margin-top: 5px; }
.why-item p { font-size: 0.85rem; color: #3c3c3c; }

/* =====================================================
   LAYANAN
===================================================== */
.services-section { background: #F0F0F0; color: #333; }
.services-section h2 { color: #169880 !important; }

.layanan-card {
  border: none;
  background: #1F8A79;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.layanan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(97,254,225,0.4);
}
.layanan-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.price-tag {
  position: absolute;
  bottom: -15px;
  right: 14px;
  background: #fff;
  color: #106F60;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}
.layanan-card:hover .price-tag { transform: scale(1.05); }
.layanan-card .card-body { padding: 16px; }
.layanan-card .card-title {
  color: #61FEE1;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.layanan-card .card-text {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

/* =====================================================
   GALERI / FOOTER / DLL
===================================================== */
#gallery {
  background-color: #f8f9fa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.gallery-card {
  background: #1F8A79;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(97,254,225,0.4);
}
.gallery-card .card-body {
  background: #106F60;
  padding: 15px 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.gallery-card .badge {
  background: #61FEE1 !important;
  color: #106F60 !important;
  font-size: 0.85rem;
  border-radius: 20px;
  padding: 6px 12px;
}
.gallery-card .btn-light {
  background: #61FEE1;
  color: #106F60;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.gallery-card .btn-light:hover {
  background: #36B09B;
  color: #fff;
}

.badge-layanan {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(16,111,96,0.9);
  color: #61FEE1;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 2;
}
@media (max-width: 576px) {
  .badge-layanan { font-size: 0.7rem; padding: 4px 10px; }
}
.img-wrapper { position: relative; border-radius: 10px; overflow: hidden; }

/* Pagination */
.pagination {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.pagination .page-link {
  background: #106F60;
  color: #61FEE1;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.pagination .page-link:hover,
.pagination .active .page-link {
  background: #61FEE1;
  color: #106F60;
}

/* =====================================================
   ABOUT / TESTIMONI / CTA / CONTACT / FOOTER
===================================================== */
.about-section iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
}
.testimoni-card {
  background: #1F8A79;
  border-radius: 12px;
  padding: 20px;
  min-width: 300px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.testimoni-card p { font-style: italic; color: #fff; }
.testimoni-card small { color: #61FEE1; }
.cta-section {
  background: linear-gradient(135deg, #106F60, #169880);
  color: #fff;
}
footer {
  background: #106F60;
  color: #fff;
  text-align: center;
  border-top: 1px solid #61FEE1;
}
footer a { color: #61FEE1; text-decoration: none; }
#contact input,
#contact textarea {
  border: 1.5px solid #ddd;
  border-radius: 10px;
  transition: border-color 0.3s ease;
}
#contact input:focus,
#contact textarea:focus {
  border-color: #106F60;
  box-shadow: 0 0 0 0.2rem rgba(16,111,96,0.1);
}
#contact h5, #contact p, #contact a { color: #106F60; }

.galeri-card {
  border-radius: 12px;
  overflow: hidden;
  background: #1F8A79;
  transition: transform .25s ease, box-shadow .25s ease;
}
.galeri-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(97,254,225,0.3);
}
.galeri-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.badge-layanan {
  font-size: .8rem;
  border-radius: 10px;
  padding: .35rem .6rem;
  background: #61FEE1;
  color: #106F60;
  font-weight: 700;
}
.img-wrapper { aspect-ratio: 3 / 4; overflow: hidden; position: relative; }
.btn-lihat-gambar {
  background: #61FEE1;
  color: #106F60;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: .4rem .9rem;
  transition: all 0.3s ease;
}
.btn-lihat-gambar:hover {
  background: #36B09B;
  color: #fff;
}

.ulasan-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ulasan-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.ulasan-section img.rounded-circle {
  object-fit: cover;
}

/* Responsif price-tag */
@media (max-width: 768px) {
  .price-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
    bottom: -10px;
    right: 10px;
  }
}
@media (max-width: 576px) {
  .price-tag {
    font-size: 0.65rem;
    padding: 3px 8px;
    bottom: -8px;
    right: 8px;
  }
}

/* Gambar ulasan mobile */
@media (max-width: 768px) {
  #ulasan .card-body img.img-fluid {
    width: 70%;
    max-width: 180px;
    height: auto;
    margin: 8px 0 0 0;
    display: block;
    border-radius: 10px;
  }
}
@media (max-width: 576px) {
  #ulasan .card-body img.img-fluid {
    width: 60%;
    max-width: 150px;
    margin-left: 0;
    border-radius: 8px;
  }
}
