/* ============================================================
   LANDING PAGE STYLES
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 60%),
    linear-gradient(180deg, var(--black) 0%, #0d0b08 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 80px;
  width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-label .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badge-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  min-width: 100px;
}
.hero-badge { text-align: center; }
.hero-badge .badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-badge .badge-label {
  font-size: 0.72rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── SERVICES GRID ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text);
}
.service-duration {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-bottom: 16px;
}
.service-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
}
.service-available {
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--text-2);
}

.skeleton-card {
  height: 180px;
  animation: shimmer 1.4s infinite;
  background: linear-gradient(90deg, var(--dark-3) 25%, var(--dark-4) 50%, var(--dark-3) 75%);
  background-size: 200% 100%;
}

/* ── WHY US ───────────────────────────────────────────────── */
.section-why {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.why-item {
  text-align: center;
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}
.why-item p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  position: relative;
  background: var(--dark-3);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .overlay { opacity: 1; }
.overlay-caption {
  font-size: 0.85rem;
  color: var(--text);
  font-style: italic;
}

/* ── LOKASI ───────────────────────────────────────────────── */
.lokasi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
}
#map-embed-container {
  height: 100%;
}
#map-embed-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.lokasi-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.lokasi-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.detail-icon {
  font-size: 1.4rem;
  width: 40px;
  flex-shrink: 0;
  text-align: center;
}
.detail-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-2);
  font-weight: 600;
  margin-bottom: 3px;
}
.detail-value {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
a.detail-value { color: var(--gold); }
a.detail-value:hover { text-decoration: underline; }

/* ── CTA SECTION ──────────────────────────────────────────── */
.section-cta {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.03), transparent);
}

.cta-box {
  border: 1px solid var(--gold-dim);
  border-radius: var(--r-xl);
  padding: 60px;
  background: linear-gradient(135deg, var(--dark-2), rgba(201,168,76,0.04));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 { color: var(--text); margin-bottom: 8px; }
.cta-text h2 em { color: var(--gold); }
.cta-text p { color: var(--text-2); }

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
  font-weight: 700;
  margin-bottom: 16px;
}

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

.footer-col li, .footer-col a {
  font-size: 0.88rem;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-3);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid     { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .cta-box      { flex-direction: column; text-align: center; padding: 40px; }
  .cta-actions  { justify-content: center; }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .hero-badge-group { flex-direction: row; width: fit-content; }
  .hero-divider     { width: 1px; height: 40px; }
  .lokasi-grid      { grid-template-columns: 1fr; }
  .gallery-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-top       { flex-direction: column; }
  .footer-links     { gap: 32px; }
  .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid  { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
}
