/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --primary:       #0B5CAD;
  --primary-dark:  #073B73;
  --primary-light: #EAF4FF;
  --accent:        #F59E0B;
  --accent-dark:   #D97706;
  --text-dark:     #1F2937;
  --text-body:     #374151;
  --text-muted:    #6B7280;
  --bg:            #FFFFFF;
  --bg-soft:       #F7F9FC;
  --bg-dark:       #0B2744;
  --wa-green:      #25D366;
  --wa-dark:       #128C7E;
  --border:        #E5E7EB;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow:        0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.14);
  --container:     1100px;
  --nav-h:         68px;
  --transition:    0.22s ease;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: 80px; }
.section-alt { background: var(--bg-soft); }

h1, h2, h3 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 700; }

/* ============================================================
   LABEL CHIP
============================================================ */
.label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ============================================================
   SECTION HEADER
============================================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 52px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

/* Destinasi title lebih lebar agar muat 1 baris di desktop */
#destinasi .section-header { max-width: 820px; }
#destinasi .section-header h2 { white-space: nowrap; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.3);
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,.4); }

.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }

.btn-lg  { font-size: 1.08rem; padding: 17px 34px; }
.btn-full { width: 100%; justify-content: center; }

.wa-icon { width: 22px; height: 22px; flex-shrink: 0; }

/* ============================================================
   TOPBAR
============================================================ */
.topbar {
  background: var(--bg-dark);
  color: rgba(255,255,255,.85);
  padding: 10px 0;
  font-size: 0.83rem;
  text-align: center;
}
.topbar a { color: var(--accent); font-weight: 700; }
.topbar a:hover { text-decoration: underline; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}
.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-family: 'Ubuntu', sans-serif;
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
}

.navbar__menu { margin-left: auto; }
.navbar__menu ul { display: flex; gap: 2px; }
.navbar__menu a {
  display: block;
  padding: 8px 13px;
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-body);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.navbar__menu a:hover { color: var(--primary); background: var(--primary-light); }

.navbar__cta { padding: 10px 20px; font-size: 0.9rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none; border: none; cursor: pointer;
  margin-left: auto;
  padding: 5px;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--bg-soft); }
.hamburger span {
  display: block; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-home.jpeg');
  background-size: cover;
  background-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,59,115,.9) 0%, rgba(7,59,115,.6) 60%, rgba(7,59,115,.35) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { padding-block: 100px 80px; max-width: 700px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 0.83rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-family: 'Lora', serif;
}

.hero-desc {
  color: rgba(255,255,255,.88);
  font-size: 1.08rem;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 32px;
}
.hero-stat { color: #fff; }
.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,.7); }

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar { background: var(--primary); padding: 18px 0; }
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.9);
  font-size: 0.86rem;
  font-weight: 600;
}
.trust-item svg { opacity: .85; flex-shrink: 0; }

/* ============================================================
   KATEGORI GRID
============================================================ */
.kategori-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.kcard {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.kcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.kcard__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.kcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.kcard:hover .kcard__img img { transform: scale(1.06); }

.kcard__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  color: var(--primary-dark);
}

.kcard__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
  flex: 1;
}
.kcard__body h3 {
  font-size: 0.97rem;
  color: var(--text-dark);
  line-height: 1.3;
}
.kcard__body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.55;
}
.kcard__cta {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.kcard:hover .kcard__cta { gap: 8px; }

.kcard--highlight { border-color: var(--accent); }
.kcard--highlight .kcard__cta { color: var(--accent-dark); }

/* ============================================================
   DESTINASI GRID
============================================================ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.dest-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.dest-card:hover img { transform: scale(1.07); }

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,59,115,.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.dest-card__overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.dest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}
.chip {
  display: inline-block;
  padding: 8px 18px;
  background: var(--bg);
  border: 1.5px solid rgba(11,92,173,.18);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: all var(--transition);
  cursor: default;
}
.chip:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ============================================================
   GALLERY
============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 210px;
  gap: 12px;
  margin-bottom: 52px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(7,59,115,.75), transparent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item:hover .gallery-item__label {
  opacity: 1;
  transform: translateY(0);
}

/* Client Logos */
.client-logos {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  text-align: center;
}
.client-logos__title {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.logos-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  filter: grayscale(1);
  opacity: .65;
  transition: all var(--transition);
}
.logo-badge img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}
.logo-badge:hover {
  filter: grayscale(0);
  opacity: 1;
  border-color: var(--primary);
}

@media (max-width: 900px) {
  .logos-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .logos-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   BENEFIT GRID
============================================================ */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.benefit-icon {
  font-size: 2rem;
  width: 56px; height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.benefit-card h3 { margin-bottom: 8px; }
.benefit-card p  { font-size: 0.88rem; color: var(--text-muted); }

/* ============================================================
   STEPS / ALUR
============================================================ */
.steps-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.step-card {
  flex: 1 1 200px;
  max-width: 260px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 0.97rem; margin-bottom: 8px; }
.step-card p  { font-size: 0.83rem; color: var(--text-muted); }
.step-arrow {
  font-size: 1.5rem;
  color: var(--primary);
  opacity: .35;
  align-self: center;
  flex-shrink: 0;
}

/* ============================================================
   MID CTA
============================================================ */
.mid-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
  padding: 72px 0;
  text-align: center;
}
.mid-cta h2 { color: #fff; margin-bottom: 14px; }
.mid-cta p  { color: rgba(255,255,255,.82); font-size: 1.05rem; max-width: 540px; margin-inline: auto; margin-bottom: 32px; }

/* ============================================================
   TESTIMONIAL
============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-lg); }
.testi-stars { color: #F59E0B; font-size: 1.05rem; margin-bottom: 14px; }
.testi-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.93rem;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.75;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.88rem; }
.testi-meta { font-size: 0.76rem; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   FAQ
============================================================ */
.faq-list {
  max-width: 740px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--bg);
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-soft); }
.faq-question.active { background: var(--primary-light); color: var(--primary); }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform .25s; }
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.91rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--primary-light);
}
.faq-answer.open { display: block; }

/* ============================================================
   FORM
============================================================ */
.form-wrap {
  max-width: 620px;
  margin-inline: auto;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}
.form-wrap h3 { margin-bottom: 6px; }
.form-wrap > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--bg-soft);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); background: var(--bg); }
.form-group textarea { resize: vertical; min-height: 100px; }
.label-opt {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  font-style: italic;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   BOTTOM CTA
============================================================ */
.bottom-cta {
  padding: 88px 0;
  text-align: center;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(245,158,11,.07);
}
.bottom-cta::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(11,92,173,.12);
}
.bottom-cta h2 { color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.bottom-cta p  { color: rgba(255,255,255,.72); max-width: 500px; margin-inline: auto; margin-bottom: 32px; position: relative; z-index: 1; }
.bottom-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: #071c33; color: rgba(255,255,255,.65); padding-top: 64px; }

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
}

/* Shared heading style for all footer columns */
.footer__brand h4,
.footer__links h4,
.footer__social h4,
.footer__address h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}

/* Col 1 — Brand */
.footer__logo .logo-img { height: 48px; }
.footer__brand p {
  margin-top: 14px;
  font-size: 0.87rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
}
.footer__brand p + p {
  margin-top: 10px;
  color: rgba(255,255,255,.42);
  font-style: italic;
  font-size: 0.83rem;
}

/* Badge kredibilitas (ASITA / ASPPI) */
.footer__badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
  max-width: 240px;
}
.footer__badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__badge img {
  max-width: 100%;
  max-height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
}
/* Col 2 — Link Penting */
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__links a::before {
  content: '›';
  color: var(--accent);
  font-weight: 700;
}
.footer__links a:hover { color: #fff; }

/* Col 3 — Social Media */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  transition: all var(--transition);
}
.social-link svg { flex-shrink: 0; opacity: .7; }
.social-link:hover {
  background: rgba(255,255,255,.07);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.social-link:hover svg { opacity: 1; }

/* Col 4 — Alamat */
.footer__address address { font-style: normal; }
.addr-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 14px;
  line-height: 1.55;
}
.addr-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: .55;
  stroke: rgba(255,255,255,.8);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.floating-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--wa-green);
  color: #fff;
  padding: 14px 22px;
  border-radius: 100px;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all .25s ease;
}
.floating-wa:hover { background: var(--wa-dark); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,.5); }
.floating-wa-pulse {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  background: #FF4444;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: .7; }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .kategori-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .benefit-grid  { grid-template-columns: repeat(2, 1fr); }
  .testi-grid    { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__address { grid-column: 1 / -1; }
  .step-arrow    { display: none; }
  .dest-grid     { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}

@media (max-width: 640px) {
  :root { --nav-h: 60px; }

  .navbar__menu {
    display: none;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 14px 24px;
    z-index: 99;
  }
  .navbar__menu.is-open { display: block; }
  .navbar__menu ul { flex-direction: column; gap: 2px; }
  .navbar__menu a { display: block; padding: 10px 12px; font-size: 0.97rem; }
  .navbar__cta  { display: none; }
  .hamburger    { display: flex; }

  .hero { min-height: auto; }
  .hero-content { padding-block: 72px 60px; }
  .hero-stats   { gap: 20px; }
  .hero-cta     { flex-direction: column; align-items: flex-start; }

  .kategori-grid { grid-template-columns: 1fr; }
  .dest-grid     { grid-template-columns: 1fr; }
  .benefit-grid  { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .form-wrap     { padding: 28px 20px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery-item.tall { grid-row: span 1; }
  #destinasi .section-header h2 { white-space: normal; }

  .floating-wa-text { display: none; }
  .floating-wa { padding: 16px; border-radius: 50%; }

  .steps-wrap { flex-direction: column; align-items: center; }
  .step-card  { max-width: 340px; width: 100%; }

  .bottom-cta-btns { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
