/* style.css */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: linear-gradient(to bottom, #22c55e, #15803d);
  color: white;
  overflow-x: hidden;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.blur {
  position: absolute;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.25;
}

.blur1 {
  width: 300px;
  height: 300px;
  background: white;
  top: -100px;
  left: -100px;
}

.blur2 {
  width: 300px;
  height: 300px;
  background: #bbf7d0;
  bottom: -100px;
  right: -100px;
}

/* LOGO */
.logo-box {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

/* LOGO BESAR TENGAH */
.hero-logo-center {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.hero-logo-center img {
  width: 500px;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
  animation: floatLogo 3s ease-in-out infinite;
}

/* ANIMASI LOGO */
@keyframes floatLogo {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-logo-center {
    margin: 35px 0;
  }

  .hero-logo-center img {
    width: 320px;
  }
}

.logo-main {
  width: 280px;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

/* TITLE */
.hero-title {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 22px;
  color: #dcfce7;
}

/* PROMO */
.promo-card {
  background: white;
  color: #166534;
  padding: 40px 30px;
  border-radius: 35px;
  margin-top: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  display: inline-block;
}

.promo-logo {
  width: 260px;
  max-width: 100%;
  margin-bottom: 20px;
}

.promo-title {
  font-size: 65px;
  font-weight: 900;
  margin: 0;
}

.promo-text {
  margin-top: 10px;
  color: #555;
  font-size: 18px;
}

/* BUTTON */
.hero-button {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn-white,
.btn-green {
  padding: 16px 35px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  transition: 0.3s;
}

.btn-white {
  background: white;
  color: #15803d;
}

.btn-green {
  background: #166534;
  color: white;
}

.btn-white:hover,
.btn-green:hover {
  transform: translateY(-4px);
}

/* SECTION */
.section-title {
  text-align: center;
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 50px;
}

/* CARD */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  color: #333;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.card-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 30px;
  color: #15803d;
  margin-bottom: 10px;
}

/* BOOKING */
.booking-section {
  padding: 100px 20px;
}

.booking-card {
  max-width: 700px;
  margin: auto;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  border-radius: 35px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 18px;
  font-size: 16px;
  outline: none;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 20px;
  background: white;
  color: #15803d;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-3px);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 40px 20px;
}

.footer-button {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-button a {
  background: white;
  color: #15803d;
  padding: 14px 28px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 700;
}

.copyright {
  margin-top: 30px;
  font-size: 14px;
  color: #dcfce7;
}

/* FLOATING */
.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 65px;
  height: 65px;
  background: white;
  color: #15803d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  z-index: 999;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }

  .promo-title {
    font-size: 42px;
  }

  .section-title {
    font-size: 38px;
  }

  .promo-logo {
    width: 200px;
  }
}
