body {
  margin: 0;
  font-family: "Roboto", "Montserrat", Arial, sans-serif;
  background: #168039;
  color: #fff;
}
a {
  text-decoration: none;
  color: white;
}
a:hover {
  color: yellow;
}

.navbar {
  background: #2db24a;
  padding: 0;
  margin: 0 auto;
  max-width: 1140px;
}
.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 20px;
  display: flex;
}
.navbar li {
  padding: 20px 30px;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  border-radius: 4px 4px 0 0;
  transition: background 0.2s;
}
.navbar li.active,
.navbar li:hover {
  background: #7c3aed;
  color: #fff;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 40px 0;
  gap: 60px;
}
.hero-image {
  background: #fff;
  border: 10px solid #e3e63b;
  border-radius: 8px;
  padding: 10px;
  box-sizing: border-box;
  max-width: 500px;
  min-width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.hero-content {
  max-width: 600px;
}
.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.1;
}
.subtitle {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 36px;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cta {
  font-size: 22px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 20px 30px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
a.cta {
  text-decoration: none;
}
.cta.yellow {
  background: #ffe000;
  color: #222;
}
.cta.yellow:hover {
  background: #ffd600;
}
.cta.blue {
  background: #1cbcff;
  color: #222;
}
.cta.blue:hover {
  background: #009ee3;
  color: #fff;
}

.layanan-section {
  background: #fff;
  padding: 60px 0 40px 0;
  width: 100%;
}
.layanan-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.layanan-slider {
  flex: 1 1 420px;
  max-width: 540px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 0 16px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  transition: background 0.2s;
}
.slider-arrow.left {
  left: 10px;
}
.slider-arrow.right {
  right: 10px;
}
.slider-arrow:hover {
  background: #168039;
}
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  gap: 8px;
}
.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dots .dot.active {
  background: #168039;
}
.layanan-list {
  flex: 1 1 380px;
  min-width: 300px;
  max-width: 600px;
  padding-top: 10px;
}
.layanan-list h2 {
  color: #168039;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 28px;
  font-family: "Montserrat", "Roboto", Arial, sans-serif;
}
.layanan-list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}
.layanan-list li {
  font-size: 1.45rem;
  color: #555a60;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Roboto", Arial, sans-serif;
}
.layanan-list .checkmark {
  color: #168039;
  font-size: 1.5em;
  font-weight: bold;
}
.layanan-desc {
  color: #168039;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 18px;
}

.about-section {
  background: #168039;
  color: #fff;
  padding: 60px 0 60px 0;
}
.about-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.about-content {
  flex: 2 1 600px;
  min-width: 320px;
}
.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 28px;
  font-family: "Montserrat", "Roboto", Arial, sans-serif;
}
.about-content h2 span {
  color: #fff;
}
.about-content p {
  font-size: 1.3rem;
  font-family: "Roboto", Arial, sans-serif;
  margin-bottom: 28px;
  line-height: 1.5;
}
.about-content b {
  font-weight: 700;
}
.about-cta {
  flex: 1 1 340px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: flex-end;
  justify-content: flex-start;
  margin-top: 24px;
}
.about-cta .cta {
  width: 100%;
  max-width: 370px;
  font-size: 1.3rem;
  justify-content: flex-start;
  padding-left: 36px;
}

.why-section {
  background: #fff;
  color: #168039;
  padding: 60px 0 60px 0;
  width: 100%;
}
.why-container {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}
.why-title {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 48px;
  font-family: "Montserrat", "Roboto", Arial, sans-serif;
}
.why-title span {
  color: #168039;
}
.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px 32px;
}
.why-item {
  flex: 1 1 260px;
  max-width: 340px;
  min-width: 220px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}
.why-item i {
  font-size: 3.5rem;
  margin-bottom: 24px;
  color: #168039;
}
.why-item h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: "Montserrat", "Roboto", Arial, sans-serif;
}
.why-item p {
  color: #888;
  font-size: 1.2rem;
  font-family: "Roboto", Arial, sans-serif;
  margin: 0;
}

.harga-section {
  background: #168039;
  color: #fff;
  padding: 60px 0 60px 0;
  width: 100%;
}
.harga-container {
  max-width: 1140px;
  margin: 0 auto;
  text-align: left;
}
.harga-title {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: "Montserrat", "Roboto", Arial, sans-serif;
}
.harga-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.2rem;
  font-family: "Roboto", Arial, sans-serif;
}
.harga-content p {
  margin-bottom: 28px;
  line-height: 1.6;
}
.harga-list {
  margin: 36px 0 24px 0;
}
.harga-list h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: "Montserrat", "Roboto", Arial, sans-serif;
}
.harga-list ol {
  margin: 0 0 12px 0;
  padding-left: 18px;
}
.harga-list li {
  font-size: 1.2rem;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Roboto", Arial, sans-serif;
}
.harga-list li span {
  margin-left: 16px;
  font-weight: 500;
}
.harga-note {
  font-size: 1rem;
  color: #ffe000;
  margin-top: 10px;
  margin-bottom: 18px;
}
.harga-payment {
  margin-top: 30px;
  font-size: 1.1rem;
}

.gallery-section {
  background: #fff;
  color: #168039;
  padding: 60px 0 60px 0;
  width: 100%;
}
.gallery-container {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}
.gallery-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: "Montserrat", "Roboto", Arial, sans-serif;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .gallery-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 1000px) {
  .hero-section {
    flex-direction: column;
    gap: 30px;
    padding: 30px 10px;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .subtitle {
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  .navbar {
    max-width: 100%;
    padding: 0 10px;
  }
  .navbar ul {
    flex-wrap: wrap;
    gap: 0;
    padding-left: 0;
  }
  .navbar li {
    font-size: 16px;
    padding: 14px 12px;
  }
  .hero-section {
    flex-direction: column;
    gap: 20px;
    padding: 20px 5px;
    min-height: unset;
  }
  .hero-image {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    border-width: 6px;
    padding: 4px;
  }
  .hero-image img {
    width: 100%;
    height: auto;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-content h1 {
    font-size: 26px;
    margin-bottom: 12px;
  }
  .subtitle {
    font-size: 15px;
    margin-bottom: 18px;
  }
  .cta-buttons {
    gap: 10px;
  }
  .cta {
    font-size: 16px;
    padding: 12px 10px;
  }
}
@media (max-width: 900px) {
  .layanan-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
  }
  .layanan-slider,
  .layanan-list {
    max-width: 100%;
    min-width: 0;
  }
  .layanan-list h2 {
    font-size: 2rem;
  }
  .layanan-list li {
    font-size: 1.1rem;
  }
  .layanan-desc {
    font-size: 1rem;
  }
  .about-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
  }
  .about-content {
    max-width: 100%;
    min-width: 0;
  }
  .about-cta {
    align-items: stretch;
    margin-top: 0;
    gap: 18px;
  }
  .about-cta .cta {
    max-width: 100%;
    padding-left: 20px;
    font-size: 1.1rem;
  }
  .why-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .why-item {
    max-width: 100%;
    min-width: 0;
  }
  .why-title {
    font-size: 2rem;
  }
  .why-item h3 {
    font-size: 1.3rem;
  }
  .why-item p {
    font-size: 1rem;
  }
  .harga-title {
    font-size: 2rem;
  }
  .harga-content {
    font-size: 1rem;
    padding: 0 10px;
  }
  .harga-list h3 {
    font-size: 1.1rem;
  }
  .harga-list li {
    font-size: 1rem;
  }
}

.faq-section {
  background: #168039;
  color: #fff;
  padding: 60px 0 60px 0;
  width: 100%;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.faq-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: "Montserrat", "Roboto", Arial, sans-serif;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  border-radius: 8px;
  background: #fff;
  color: #168039;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.2rem;
  font-family: "Montserrat", "Roboto", Arial, sans-serif;
  font-weight: 700;
  color: #168039;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.faq-question::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s;
}
.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f6f6f6;
  color: #168039;
  font-size: 1.1rem;
  font-family: "Roboto", Arial, sans-serif;
  padding: 0 24px;
  transition: max-height 0.3s ease, padding 0.3s;
}
.faq-item.active .faq-answer {
  padding: 18px 24px 24px 24px;
  max-height: 300px;
}
@media (max-width: 700px) {
  .faq-container {
    padding: 0 10px;
  }
  .faq-title {
    font-size: 1.3rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 14px 14px;
  }
  .faq-answer {
    font-size: 0.95rem;
    padding: 0 14px;
  }
  .faq-item.active .faq-answer {
    padding: 12px 14px 16px 14px;
  }
}

.maps-section {
  background: #fff;
  color: #168039;
  padding: 60px 0 60px 0;
  width: 100%;
}
.maps-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.maps-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  font-family: "Montserrat", "Roboto", Arial, sans-serif;
}
.maps-embed iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  border: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.wa-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 32px;
  right: 32px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  z-index: 999;
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover {
  background: #128c7e;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}
@media (max-width: 700px) {
  .maps-container {
    padding: 0 10px;
  }
  .maps-title {
    font-size: 1.2rem;
  }
  .maps-embed iframe {
    height: 220px;
  }
  .wa-float {
    width: 48px;
    height: 48px;
    font-size: 1.7rem;
    bottom: 18px;
    right: 18px;
  }
}
