*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white: #FFFFFF;
  --cream: #FAF8F5;
  --cream-dark: #F0EBE3;
  --gold: #B8975A;
  --gold-light: #D4B07A;
  --gold-pale: #F5EDD8;
  --black: #1A1A1A;
  --gray: #6B6B6B;
  --gray-light: #9A9A9A;
  --border: #E5DDD4;
  --shadow: rgba(26,26,26,0.08);
}

html { scroll-behavior: smooth; }
.brand{
  color: white;
  text-decoration: none;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* ══ NAVBAR ══ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 2px 24px var(--shadow); }

.logo {
  display: flex;
  align-items: center;
  gap: 12px; /* Jarak antara gambar logo dan teks */
  text-decoration: none;
}

.logo-img {
  height: 42px; /* Sesuaikan tinggi logo dengan navbar Anda */
  width: auto;  /* Menjaga proporsi logo agar tidak gepeng */
  object-fit: contain;
  display: block;
}

.logo-mark {
  width: 38px; height: 38px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid var(--gold);
}

.logo-mark svg { width: 18px; height: 18px; }

.logo-text {
  line-height: 1;
}

.logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.5px;
}

.logo-text span {
  display: block;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s;
}

.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-phone {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

.btn-nav {
  background: var(--black);
  color: var(--white);
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-nav:hover { background: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--black);
  transition: all 0.3s;
}

/* ══ HERO ══ */
:root {
  --gold: #c5a059;
  --gold-hover: #b08c46;
  --white: #ffffff;
}

/* Container Hero Fullscreen */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh; /* Memenuhi tinggi layar penuh browser */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 5% 60px 5%; /* Spasi atas untuk Navbar */
}

/* Background Video Positioning */
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden; /* Mencegah overflow */
}

.hero-main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  /* ⚡ TRIK AGAR RENDER LEBIH TAJAM & MENCEGAH BLUR ⚡ */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: translateZ(0); /* Memaksa akselerasi GPU */
  will-change: transform;
  backface-visibility: hidden;
}
/* Layer Overlay Gelap Agar Teks Terbaca Tajam */
.hero-overlay {
  display: none; /* Video tampil 100% cerah & tajam */
}
/* Layout Konten Teks */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center; /* Diposisikan di tengah seperti gambar referensi 1 */
  color: var(--white);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Eyebrow / Text Kecil Di Atas Title */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.hero-eyebrow-line {
  width: 35px;
  height: 2px;
  background: var(--gold);
}

/* Judul Utama */
.hero h1 {
  font-family: 'Playfair Display', serif, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--white);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Tombol Aksi */
.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 3.5rem;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Statistik di Bawah */
.hero-stats {
  display: flex;
  gap: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

.hero-stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.hero-stat-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Badge Award Diposisikan Kanan Atas (Glassmorphism) */
.hero-award {
  position: absolute;
  top: 100px;
  right: 3rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 18px;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-award strong {
  display: block;
  font-size: 13px;
  font-family: 'Playfair Display', serif;
}

.hero-award span {
  font-size: 11px;
  color: var(--gold);
}

/* Indikator Scroll di Tengah Bawah */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.scroll-text {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 2px;
  height: 30px;
  background: var(--gold);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* Penyesuaian Tampilan HP / Mobile */
@media (max-width: 768px) {
  .hero-award {
    display: none; /* Sembunyikan badge award di HP agar layar lega */
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-num {
    font-size: 1.6rem;
  }
  .konsultasi{
    display: none;
  }
}
/* Badge Award */
.hero-award {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 22px;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: transform 0.3s ease;
}

.hero-award:hover {
  transform: translateY(-3px);
}

.hero-award strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--black);
  letter-spacing: 0.3px;
}

.hero-award span {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  z-index: 2;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.hero-scroll:hover {
  opacity: 1;
}

.scroll-text {
  writing-mode: vertical-rl;
  letter-spacing: 2px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
}

.scroll-line {
  width: 2px;
  height: 45px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
  50% {
    opacity: 0.3;
    transform: scaleY(0.6);
    transform-origin: top;
  }
}

/* Responsif Mobile */
@media (max-width: 768px) {
 .hero-right {
  width: 100%;
  height: 100%;
  min-height: 580px;
  border-radius: 16px;
  overflow: hidden;
}

  .hero-award {
    bottom: 1.2rem;
    left: 1.2rem;
    padding: 10px 16px;
  }

  .hero-award strong {
    font-size: 13px;
  }

  .hero-scroll {
    bottom: 1.2rem;
    right: 1.2rem;
  }
}
/* ══ BRAND BAR ══ */
.hero-bottom-bar {
  background: #111111;
  padding: 1.8rem 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold, #c5a059);
  line-height: 1;
}

.stat-item span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

.bar-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.12);
}

/* ══ TENTANG ══ */
.tentang {
  padding: 7rem 6%;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 6rem;
  align-items: center;
  background: var(--white);
}

.tentang-imgs {
  position: relative;
  height: 520px;
}

.tentang-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 80%;
  object-fit: cover;
}

/* placeholder */
.img-ph {
  background: var(--cream-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray-light);
  font-size: 13px;
}

.img-ph svg { opacity: 0.3; }

.tentang-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 60%; height: 55%;
  object-fit: cover;
  border: 6px solid var(--white);
}

.tentang-stat-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  padding: 22px 28px;
  text-align: center;
  z-index: 3;
  border: 4px solid var(--white);
}

.tentang-stat-block strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--white);
  line-height: 1;
}

.tentang-stat-block span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.section-label-line { width: 28px; height: 1px; background: var(--gold); }

.section-label span {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 15.5px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.6;
}

.check-list li::before {
  content: '';
  width: 18px; height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--gold);
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23B8975A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
}

/* ══ PORTOFOLIO ══ */
/* ══ PORTOFOLIO ══ */
.portofolio {
  padding: 0;
  background: var(--black);
}
 
.portofolio-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4.5rem 6% 3rem;
  gap: 1.5rem;
}
 
.porto-title-wrap {
  position: relative;
  display: inline-block;
}
 
.porto-main-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.8vw, 17px);
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
}
 
.porto-title-line {
  width: 100%;
  height: 1px;
  background: var(--white);
  opacity: 0.25;
  margin-top: 10px;
}
 
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
 
.filter-tab {
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
}
 
.filter-tab.active, .filter-tab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
 
/* GALLERY GRID — uniform 2 baris × 6 kolom */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 3px;
  padding: 0 3px 3px;
}
 
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1a;
}
 
/* semua item uniform — override span lama */
.gallery-item:nth-child(n) {
  grid-column: span 1;
  grid-row: span 1;
}
 
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
 
.gallery-item:hover .gallery-img { transform: scale(1.07); }
 
.gallery-img-ph {
  width: 100%; height: 100%;
  background: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #555;
  font-size: 11px;
  transition: transform 0.5s ease;
}
 
.gallery-item:hover .gallery-img-ph { transform: scale(1.04); }
 
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.82) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
 
.gallery-item:hover .gallery-overlay { opacity: 1; }
 
.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 3px;
  line-height: 1.3;
}
 
.gallery-meta {
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}
 
.gallery-expand {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
 
.gallery-expand svg { width: 14px; height: 14px; }
.gallery-item:hover .gallery-expand { opacity: 1; }
 
.view-all-wrap {
  text-align: center;
  padding: 2.5rem 6% 4.5rem;
  background: var(--black);
}
 
/* ══ LIGHTBOX ══ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
 
.lightbox.open { display: flex; }
 
.lightbox-img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
 
.lightbox-img-ph {
  width: 800px;
  max-width: 88vw;
  height: 500px;
  max-height: 84vh;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #555;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
}
 
.lightbox-close {
  position: absolute;
  top: 2rem; right: 2.5rem;
  background: none; border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
}
 
.lightbox-close:hover { opacity: 1; }
 
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s;
}
 
.lightbox-nav:hover { background: rgba(184,151,90,0.3); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
 
.lightbox-info {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
 
.lightbox-info strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}
 
.lightbox-info span {
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 1px;
}
 
/* ══ LAYANAN ══ */
.layanan {
  padding: 7rem 6%;
  background: var(--white);
}

.layanan-header {
  text-align: center;
  margin-bottom: 4rem;
}

.layanan-header .section-label {
  justify-content: center;
}

.layanan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.layanan-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.layanan-card:hover { background: var(--cream); }

.layanan-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  position: absolute;
  top: 1.5rem; right: 2rem;
  transition: color 0.3s;
}

.layanan-card:hover .layanan-num { color: var(--gold-pale); }

.layanan-icon {
  width: 52px; height: 52px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}

.layanan-icon svg { width: 22px; height: 22px; stroke: var(--gold); }

.layanan-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.layanan-card p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.layanan-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.layanan-link:hover { gap: 14px; }

/* ══ PROSES ══ */
.proses {
  padding: 7rem 6%;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.proses::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,151,90,0.06) 0%, transparent 70%);
}

.proses-inner {
  position: relative; z-index: 1;
}

.proses-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.proses .section-label span { color: var(--gold-light); }
.proses .section-label-line { background: var(--gold-light); }
.proses .section-title { color: var(--white); }
.proses .section-sub { color: rgba(255,255,255,0.55); }

.proses-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.proses-steps::before {
  content: '';
  position: absolute;
  top: 30px; left: 0; right: 0;
  height: 1px;
  background: rgba(184,151,90,0.25);
  z-index: 0;
}

.proses-step {
  position: relative;
  z-index: 1;
  padding-top: 4.5rem;
  padding-right: 2.5rem;
}

.proses-step-dot {
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  border: 1px solid rgba(184,151,90,0.4);
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
}

.proses-step-dot-inner {
  width: 10px; height: 10px;
  background: var(--gold);
}

.proses-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.proses-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.proses-step p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

/* ══ TESTIMONI ══ */
.testimoni {
  padding: 7rem 6%;
  background: var(--cream);
}

.testimoni-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimoni-header .section-label { justify-content: center; }

.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.testi-card:hover {
  box-shadow: 0 12px 40px var(--shadow);
  border-color: var(--gold);
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.25rem;
}

.testi-stars span {
  color: var(--gold);
  font-size: 15px;
}

.testi-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.testi-avatar {
  width: 46px; height: 46px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.testi-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.testi-loc {
  font-size: 12px;
  color: var(--gold);
  margin-top: 3px;
  font-weight: 500;
}

/* ══ CTA BANNER ══ */
.cta-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.cta-left {
  background: var(--gold);
  padding: 5rem 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-left .section-title { color: var(--black); }

.cta-left p {
  font-size: 16px;
  color: rgba(26,26,26,0.7);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 380px;
}

.btn-white {
  background: var(--white);
  color: var(--black);
  padding: 15px 34px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-white:hover {
  background: var(--black);
  color: var(--white);
}

.cta-right {
  background: var(--black);
  padding: 5rem 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.cta-right .section-title { color: var(--white); }

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(184,151,90,0.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 16px; height: 16px; stroke: var(--gold); }

.contact-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  display: block;
}

.contact-val {
  display: block;
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
  margin-top: 2px;
}

/* ══ FOOTER ══ */
footer {
  background: #0D0D0D;
  padding: 4rem 6% 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.85;
  margin-top: 1.25rem;
  max-width: 280px;
}

.footer-gold-line {
  width: 36px; height: 2px;
  background: var(--gold);
  margin-top: 1.5rem;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.2);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ══ MOBILE MENU ══ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9000;
  flex-direction: column;
  padding: 0 6%;
}

.mobile-menu.open { display: flex; }

.mobile-menu-head {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.mobile-close {
  background: none;
  border: 1px solid var(--border);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  cursor: pointer;
  color: var(--black);
}

.mobile-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 1.5rem;
}

.mobile-links a {
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--black);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-links a:hover { color: var(--gold); }

/* ══ ANIMATIONS ══ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
  .gallery-item:nth-child(2) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(3) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(7) { grid-column: span 3; grid-row: span 2; }
  .gallery-item:nth-child(8) { grid-column: span 3; grid-row: span 1; }
  .gallery-item:nth-child(9) { grid-column: span 3; grid-row: span 1; }
  .proses-steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3rem; }
  .proses-steps::before { display: none; }
}

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 300px; }
  .hero-img-placeholder { min-height: 300px; }
  .hero-scroll { display: none; }
  .tentang { grid-template-columns: 1fr; }
  .tentang-imgs { height: 320px; margin-bottom: 3rem; }
  .layanan-grid { grid-template-columns: 1fr; gap: 1px; }
  .testimoni-grid { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .portofolio-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .proses-header { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  section, .tentang, .layanan, .proses, .testimoni, .portofolio { padding: 5rem 5%; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .proses-steps { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ══ WHATSAPP FLOATING ══ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9998;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* Animasi pulse ring */
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Segitiga tooltip */
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--black);
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
}

/* Mobile — sedikit lebih kecil */
@media (max-width: 640px) {
  .wa-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }

  .wa-tooltip {
    display: none;
  }
}