:root {
  --primary: #5bbda8;
  --primary-soft: rgba(91, 189, 168, 0.08);
  --text: #222222;
  --muted: #6c757d;
  --bg: #ffffff;
  --bg-soft: #f7f9fb;
  --border: #e5e7eb;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --transition: all 0.25s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background-color: var(--bg-soft);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #5bbda8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(91, 189, 168, 0.45);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.2s ease;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  font-weight: 500;
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(91, 189, 168, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(91, 189, 168, 0.55);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--text);
  background-color: #ffffff;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

/* MOBILE NAV */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background-color: #111827;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    inset: 58px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.98);
    padding: 0.75rem 1.6rem 1rem;
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .nav-links.show {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .navbar-inner {
    padding: 0.7rem 0;
  }
}

/* HERO */
.hero {
  position: relative;
  padding: 4.5rem 0 3.2rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -160px -200px auto auto;
  background-image: radial-gradient(circle at 0% 0%, rgba(91, 189, 168, 0.16), transparent 56%);
  opacity: 0.8;
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: 2.5rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background-color: var(--primary-soft);
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.hero-kicker span.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--primary);
}

.hero-title {
  font-size: clamp(2.05rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 470px;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-meta strong {
  color: var(--text);
}

.hero-visual {
  position: relative;
}

.hero-card {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
}

.hero-card-main {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-card-title {
  font-size: 1rem;
  font-weight: 600;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background-color: #f9fafb;
  color: var(--muted);
  width: fit-content;
}

.hero-chip span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5bbda8, #22c55e);
}

.hero-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 160px;
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-floating {
  position: absolute;
  bottom: -20px;
  left: -10px;
  background-color: #ffffff;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
  font-size: 0.74rem;
}

.hero-floating strong {
  color: var(--primary);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3rem;
  }
}

@media (max-width: 600px) {
  .hero-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* SECTION GENERIC */
section {
  padding: 3.5rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  max-width: 580px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--muted);
}

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.benefit-card {  
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 1.2rem 1.1rem;
  box-shadow: 0 10px 30px rgba(148, 163, 184, 0.12);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  border-color: rgba(91, 189, 168, 0.35);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, #5bbda8, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.benefit-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.benefit-text {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* DESTINATIONS */
.destinations {
  background-color: #ffffff;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.destination-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 160px;
  cursor: pointer;
  background-color: #0f172a;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.95;
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.35), transparent);
  display: flex;
  align-items: flex-end;
  padding: 0.85rem 0.9rem;
  color: #ffffff;
  justify-content: space-between;
  font-size: 0.78rem;
}

.destination-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.destination-tag {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.destination-card:hover img {
  transform: scale(1.08);
  opacity: 1;
}

@media (max-width: 900px) {
  .destinations-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .destinations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 500px) {
  .destinations-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* PACKAGES */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.package-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  flex-direction: column;
}

.package-body {
  padding: 1.05rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.package-title {
  font-size: 0.98rem;
  font-weight: 600;
}

.package-meta {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.package-price {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}

.package-footer {
  margin-top: 0.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.package-badge {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background-color: var(--primary-soft);
  color: var(--primary);
  font-weight: 500;
  font-size: 0.72rem;
}

.package-card .btn {
  font-size: 0.8rem;
  padding: 0.45rem 1.05rem;
}

@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .packages-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* PARTNER LOGOS */
.partners {
  background-color: #ffffff;
}

.partner-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  align-items: center;
  opacity: 0.85;
}

.partner-logo {
  height: 32px;
  filter: grayscale(1);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* TESTIMONIALS */
.testimonials {
  background: radial-gradient(circle at top left, rgba(91, 189, 168, 0.08), transparent 55%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.1rem;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5bbda8, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-name {
  font-size: 0.86rem;
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted);
}

.stars {
  font-size: 0.78rem;
  color: #fbbf24;
  margin-bottom: 0.35rem;
}

.testimonial-text {
  font-size: 0.82rem;
  color: #4b5563;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* FINAL CTA */
.cta-final {
  padding: 3.2rem 0;
}

.cta-box {
  background: linear-gradient(135deg, #5bbda8, #10b981);
  border-radius: 26px;
  padding: 2.2rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: center;
  gap: 1.8rem;
  color: #ffffff;
  box-shadow: 0 26px 60px rgba(16, 185, 129, 0.55);
}

.cta-title {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.cta-text {
  font-size: 0.92rem;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.cta-box .btn {
  border-radius: 999px;
}

.btn-light {
  background-color: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.btn-light:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.32);
}

.cta-phone {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.86rem;
}

.cta-phone span {
  opacity: 0.85;
}

.cta-phone strong {
  font-size: 1rem;
}

@media (max-width: 900px) {
  .cta-box {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* FOOTER */
footer {
  background-color: #0f172a;
  color: #e5e7eb;
  padding: 2.3rem 0 1.8rem;
  font-size: 0.82rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  margin-bottom: 1.6rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.footer-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffffff, #5bbda8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.85rem;
}

.footer-logo span {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

.footer-desc {
  color: #9ca3af;
  max-width: 320px;
}

.footer-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #9ca3af;
}

.footer-list a {
  color: inherit;
}

.footer-list a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-top: 1px solid rgba(55, 65, 81, 0.8);
  padding-top: 0.9rem;
  color: #6b7280;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #9ca3af;
  transition: var(--transition);
}

.footer-social a:hover {
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(148, 163, 184, 0.2);
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: minmax(0, 1fr);
  }

  footer {
    padding-bottom: 1.4rem;
  }
}

.brand-logo {
  height: 42px;      /* boleh diubah ke 36–48px sesuai selera */
  width: auto;
  display: block;
  object-fit: contain;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-size: 1.05rem;
  font-weight: 600;
  white-space: nowrap;
}

