/* ============================================
   KAKEKSLOT - Custom CSS
   Theme: Light / White Premium
   Colors: Gold, Dark Navy, Royal Blue
   Fonts: Plus Jakarta Sans, Sora
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #b8922e;
  --gold-light: #d4a843;
  --gold-bright: #f0c040;
  --gold-dim: #9a7a20;
  --navy: #0f1629;
  --navy-light: #1a2340;
  --royal: #1a3a6e;
  --royal-light: #2454a0;
  --accent: #2563eb;
  --accent-light: #dbeafe;

  --bg: #ffffff;
  --bg-soft: #f7f8fb;
  --bg-card: #ffffff;
  --text: #1a1d2e;
  --text-secondary: #5a6278;
  --text-muted: #8891a5;
  --border: #e2e5ed;
  --border-hover: #c8cdd8;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 4px 20px rgba(184, 146, 46, 0.2);

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Sora', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

a {
  color: var(--royal-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--royal);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Top Bar --- */
.top-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.top-bar__inner {
  display: flex;
  justify-content: center;
}

.top-bar__list {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}

.top-bar__icon {
  width: 14px;
  height: 14px;
  color: var(--gold-bright);
  flex-shrink: 0;
}

/* --- Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: box-shadow var(--transition), background var(--transition);
}

.navbar--scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

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

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__list {
  display: flex;
  gap: 2px;
}

.navbar__link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--text);
  background: var(--bg-soft);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.navbar__toggle--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle--open span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  padding: 10px 24px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  box-shadow: 0 6px 28px rgba(184, 146, 46, 0.35);
  transform: translateY(-2px);
  color: var(--navy);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn--outline:hover {
  background: rgba(184, 146, 46, 0.06);
  color: var(--gold-dim);
  border-color: var(--gold-dim);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 7px 18px;
  font-size: 13px;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 15px;
}

.btn--block {
  width: 100%;
}

/* --- Hero Section --- */
.hero {
  padding: 48px 0 72px;
  background: var(--bg);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hero__gallery {
  position: sticky;
  top: 100px;
}

.hero__main-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  aspect-ratio: 3/2;
  box-shadow: var(--shadow-md);
}

.hero__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.hero__thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all var(--transition);
  aspect-ratio: 3/2;
  opacity: 0.55;
  cursor: pointer;
  padding: 0;
  box-shadow: var(--shadow-xs);
}

.hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__thumb:hover {
  opacity: 0.8;
  border-color: var(--border-hover);
}

.hero__thumb--active {
  border-color: var(--gold);
  opacity: 1;
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-sm);
}

.hero__actions-mobile {
  display: none;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 12px;
}

.hero__desc {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--royal);
  background: var(--accent-light);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.badge__icon {
  width: 12px;
  height: 12px;
}

.hero__meta {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.hero__meta-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}

.hero__meta-row:last-child {
  border-bottom: none;
}

.hero__meta-label {
  color: var(--text-muted);
}

.hero__meta-value {
  font-weight: 600;
  color: var(--text);
}

.hero__meta-value--active {
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  display: inline-block;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
}

.hero__packages {
  margin-bottom: 24px;
}

.hero__packages-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.hero__packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.package-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.package-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}

.package-card--selected {
  border-color: var(--gold);
  background: rgba(240, 192, 64, 0.05);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-xs);
}

.package-card__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.package-card__tag {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.hero__trust {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero__trust-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #16a34a;
  margin-top: 1px;
}

/* --- Sections --- */
.section {
  padding: 80px 0;
}

.section:nth-child(even) {
  background: var(--bg-soft);
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184, 146, 46, 0.08);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
}

.section__subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Keunggulan --- */
.keunggulan__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.feature-card__icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 146, 46, 0.06);
  border-radius: 14px;
  border: 1px solid rgba(184, 146, 46, 0.12);
  transition: all var(--transition);
}

.feature-card:hover .feature-card__icon-wrap {
  background: rgba(184, 146, 46, 0.1);
  border-color: rgba(184, 146, 46, 0.25);
  transform: scale(1.08);
}

.feature-card__icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-card__text {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Deskripsi --- */
.deskripsi__content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.deskripsi__text p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.deskripsi__text h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.deskripsi__text h3:first-of-type {
  margin-top: 8px;
  padding-top: 0;
  border-top: none;
}

.deskripsi__list {
  margin-bottom: 24px;
}

.deskripsi__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
  padding: 12px 16px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.deskripsi__check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px;
}

.deskripsi__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-sm);
}

.deskripsi__card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.deskripsi__spec-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}

.deskripsi__spec-row:last-child {
  border-bottom: none;
}

.deskripsi__spec-row dt {
  color: var(--text-muted);
}

.deskripsi__spec-row dd {
  font-weight: 600;
  color: var(--gold);
}

/* --- Pricing --- */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--gold);
  background: var(--bg-card);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-md);
  transform: scale(1.04);
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.pricing-card__period {
  font-size: 13px;
  color: var(--text-muted);
}

.pricing-card__features {
  margin-bottom: 28px;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
  padding: 8px 0;
}

.pricing-card__feature--disabled {
  opacity: 0.35;
}

.pricing-card__check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold);
}

.pricing-card__feature--disabled .pricing-card__check {
  color: var(--text-muted);
}

/* --- FAQ --- */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
  transition: all var(--transition);
}

.faq__item:hover {
  box-shadow: var(--shadow-sm);
}

.faq__item--open {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--gold);
}

.faq__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq__item--open .faq__arrow {
  transform: rotate(180deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 24px;
}

.faq__answer[hidden] {
  display: block;
  max-height: 0;
  padding-bottom: 0;
}

.faq__item--open .faq__answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq__answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.85;
}

/* --- Testimoni --- */
.testimoni__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}

.testi-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testi-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testi-card__stars svg {
  width: 14px;
  height: 14px;
  color: var(--gold-bright);
}

.testi-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: normal;
  border: none;
  padding: 0;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--royal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.testi-card__role {
  font-size: 12px;
  color: var(--text-muted);
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__logo {
  margin-bottom: 16px;
}

.footer__logo-img {
  filter: brightness(1.3);
}

.footer__desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold-bright);
}

.footer__address {
  font-style: normal;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__map iframe {
  display: block;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Mobile Bottom CTA --- */
.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-cta--visible {
    transform: translateY(0);
  }

  .mobile-cta__btn {
    flex: 1;
    padding: 13px 16px;
    font-size: 14px;
    border-radius: var(--radius-sm);
  }
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 90;
  cursor: pointer;
  border: none;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-dim);
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(184, 146, 46, 0.4);
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up--visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-left--visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-right--visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in--visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Counter Animation --- */
.counter-value {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--gold);
  display: inline-block;
  transition: color var(--transition);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__gallery {
    position: static;
  }

  .keunggulan__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .deskripsi__content {
    grid-template-columns: 1fr;
  }

  .deskripsi__card {
    position: static;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  .top-bar__list {
    gap: 16px;
  }

  .top-bar__item:last-child {
    display: none;
  }

  .navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .navbar__toggle {
    display: flex;
    z-index: 210;
    position: relative;
  }

  .navbar__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 72px 24px 32px;
    gap: 8px;
    visibility: hidden;
    opacity: 0;
    transition: opacity var(--transition), visibility var(--transition);
    overflow-y: auto;
    z-index: 200;
  }

  .navbar__nav--open {
    visibility: visible;
    opacity: 1;
  }

  .navbar__list {
    flex-direction: column;
    gap: 0;
  }

  .navbar__link {
    font-size: 16px;
    padding: 16px 16px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    color: var(--text);
  }

  .navbar__nav .btn {
    margin-top: 16px;
    padding: 14px 24px;
    font-size: 15px;
  }

  .hero {
    padding: 32px 0 48px;
  }

  .hero__title {
    font-size: 22px;
  }

  .hero__thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .hero__actions-mobile {
    display: flex;
    gap: 10px;
    margin-top: 16px;
  }

  .hero__actions-mobile .btn {
    flex: 1;
    padding: 13px 12px;
    font-size: 14px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .section__title {
    font-size: 24px;
  }

  .keunggulan__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimoni__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    padding-bottom: 76px;
  }

  .back-to-top {
    bottom: 76px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero__packages-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero__thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }

  .hero__meta-row {
    flex-direction: column;
    gap: 2px;
  }

  .faq__question {
    padding: 16px 18px;
    font-size: 14px;
  }

  .faq__answer {
    padding: 0 18px;
  }

  .faq__item--open .faq__answer {
    padding-bottom: 16px;
  }

  .pricing-card {
    padding: 28px 20px;
  }
}
