* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f8fafc;
  color: #1f2937;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
header {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  color: #fff;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav a {
  margin-left: 20px;
  font-weight: 500;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 70px 0;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 30px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #16a34a;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.cta:hover {
  background: #15803d;
}

.hero-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* SECTION */
section {
  padding: 70px 0;
}

.alt-bg {
  background: #eef2ff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2rem;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card i {
  font-size: 2rem;
  color: #0ea5e9;
  margin-bottom: 15px;
}

/* PRICING */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.price-card {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.price {
  font-size: 1.8rem;
  color: #16a34a;
}

/* REVIEWS */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.review-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.stars {
  color: #facc15;
  margin-bottom: 10px;
}

/* MAP */
iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 20px;
}

/* FOOTER */
footer {
  background: #0f172a;
  color: #cbd5f5;
  text-align: center;
  padding: 40px 0;
}

/* FLOATING WA */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 25px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-img img {
    height: 260px;
  }

  .nav {
    flex-direction: column;
    gap: 10px;
  }
}

/* NAVBAR HAMBURGER */
.nav {
  position: relative;
}

.nav-toggle {
  display: none;
}

.nav-menu {
  display: flex;
}

/* HAMBURGER ICON */
.nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle-label span {
  background: #fff;
  height: 3px;
  width: 26px;
  margin: 4px 0;
  border-radius: 3px;
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0ea5e9;
    flex-direction: column;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-radius: 0 0 20px 20px;
  }

  .nav-menu a {
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.2);
  }

  .nav-toggle-label {
    display: flex;
  }

  /* OPEN MENU */
  .nav-toggle:checked ~ .nav-menu {
    max-height: 300px;
  }

  /* ANIMASI ICON */
  .nav-toggle:checked + .nav-menu + .nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle:checked + .nav-menu + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-menu + .nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
