/* ========================================
RESET & ROOT - LUXURY BLACK & GOLD
======================================== */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--white: #ffffff;
--black: #0a0a0a;
--black-light: #141414;
--black-card: #1a1a1a;
--black-border: #2a2a2a;
--gold: #d4a373;
--gold-light: #e8c9a0;
--gold-dark: #b8855a;
--gold-glow: rgba(212, 163, 115, 0.2);
--gray-50: #1a1a1a;
--gray-100: #1e1e1e;
--gray-200: #2a2a2a;
--gray-300: #3a3a3a;
--gray-400: #555555;
--gray-500: #888888;
--gray-600: #aaaaaa;
--gray-700: #cccccc;
--gray-800: #e0e0e0;
--gray-900: #f0f0f0;
--green: #34C759;
--red: #FF3B30;
--gradient-gold: linear-gradient(135deg, #b8855a, #d4a373, #e8c9a0);
}

html {
scroll-behavior: smooth;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
background: var(--black);
color: var(--gray-700);
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
width: 100%;
}

/* ========================================
LOADING SCREEN
======================================== */
#loading-screen {
position: fixed;
inset: 0;
z-index: 99999;
background: var(--black);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#loading-screen.hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
}

#loading-screen .logo-load {
position: relative;
display: flex;
align-items: center;
justify-content: center;
transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#loading-screen .logo-load img {
display: block;
width: 200px;
height: auto;
max-width: 80vw;
opacity: 0;
transform: scale(0.7);
animation: logoReveal 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

#loading-screen.zoom-out .logo-load {
transform: scale(1.8);
opacity: 0;
}

#loading-screen.zoom-out .logo-load img {
transform: scale(1.5);
opacity: 0;
}

#loading-screen.zoom-out .loading-bar,
#loading-screen.zoom-out .loading-percent {
opacity: 0;
transform: scale(0.5);
transition: all 0.8s ease;
}

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

#loading-screen .loading-bar {
margin-top: 3rem;
width: 200px;
height: 2px;
background: rgba(255, 255, 255, 0.06);
border-radius: 2px;
overflow: hidden;
opacity: 0;
animation: barFadeIn 0.8s ease forwards 0.6s;
transition: opacity 0.8s ease;
}

#loading-screen .loading-bar .fill {
width: 0%;
height: 100%;
background: var(--gold);
border-radius: 2px;
transition: width 0.3s ease;
}

@keyframes barFadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}

#loading-screen .loading-percent {
margin-top: 0.8rem;
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.2);
letter-spacing: 0.3em;
font-weight: 300;
opacity: 0;
animation: barFadeIn 0.8s ease forwards 0.8s;
transition: opacity 0.8s ease;
font-variant-numeric: tabular-nums;
}

#loading-screen .loading-percent .percent-num {
color: var(--gold-light);
font-weight: 500;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ========================================
STATUS PESANAN
======================================== */
.status-menunggu {
  background: rgba(212, 163, 115, 0.15);
  color: var(--gold);
}
.status-diproses {
  background: rgba(78, 205, 196, 0.15);
  color: #4ecdc4;
}
.status-selesai {
  background: rgba(52, 199, 89, 0.15);
  color: var(--green);
}

/* ========================================
NOTIFICATION
======================================== */
.notification {
position: fixed;
top: 80px;
right: 20px;
background: rgba(20, 20, 20, 0.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
color: var(--white);
padding: 1rem 1.5rem;
border-radius: 14px;
border: 1px solid rgba(255, 255, 255, 0.04);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
z-index: 9999;
max-width: 360px;
transform: translateX(120%);
transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.notification.show {
transform: translateX(0);
}

.notification .title {
font-weight: 600;
font-size: 0.9rem;
color: var(--gold-light);
margin-bottom: 0.3rem;
}

.notification .body {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.5);
}

/* ========================================
FLOATING PROMO
======================================== */
.floating-promo {
position: fixed;
bottom: 100px;
right: 30px;
z-index: 9998;
background: rgba(20, 20, 20, 0.96);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.04);
border-radius: 16px;
padding: 1.2rem 1.5rem;
max-width: 340px;
box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
transform: translateX(120%);
transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.floating-promo.show {
transform: translateX(0);
}

.floating-promo .promo-badge {
display: inline-block;
background: var(--gold);
color: var(--white);
padding: 0.15rem 0.8rem;
border-radius: 40px;
font-size: 0.5rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
margin-bottom: 0.3rem;
}

.floating-promo .promo-title {
color: var(--white);
font-size: 0.95rem;
font-weight: 700;
line-height: 1.3;
margin-bottom: 0.2rem;
}

.floating-promo .promo-title span {
color: var(--gold-light);
}

.floating-promo .promo-price {
color: var(--gold-light);
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 0.2rem;
}

.floating-promo .promo-desc {
color: rgba(255, 255, 255, 0.3);
font-size: 0.65rem;
line-height: 1.5;
margin-bottom: 0.8rem;
}

.floating-promo .promo-actions {
display: flex;
gap: 0.6rem;
flex-wrap: wrap;
}

.floating-promo .promo-actions .btn-promo-wa {
background: var(--gold);
color: var(--white);
border: none;
padding: 0.4rem 1.2rem;
border-radius: 40px;
font-weight: 600;
font-size: 0.65rem;
cursor: pointer;
transition: all 0.3s ease;
font-family: inherit;
}

.floating-promo .promo-actions .btn-promo-wa:hover {
background: var(--gold-light);
transform: scale(1.04);
}

.floating-promo .promo-actions .btn-promo-link {
background: rgba(255, 255, 255, 0.04);
color: var(--white);
border: 1px solid rgba(255, 255, 255, 0.06);
padding: 0.4rem 1.2rem;
border-radius: 40px;
font-weight: 500;
font-size: 0.65rem;
cursor: pointer;
transition: all 0.3s ease;
font-family: inherit;
}

.floating-promo .promo-actions .btn-promo-link:hover {
background: rgba(255, 255, 255, 0.08);
}

.floating-promo .promo-close {
position: absolute;
top: 8px;
right: 12px;
background: none;
border: none;
color: rgba(255, 255, 255, 0.15);
font-size: 1rem;
cursor: pointer;
transition: color 0.3s ease;
}

.floating-promo .promo-close:hover {
color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 640px) {
.floating-promo {
bottom: 80px;
right: 12px;
left: 12px;
max-width: none;
padding: 1rem;
}
.floating-promo .promo-title {
font-size: 0.85rem;
}
.floating-promo .promo-price {
font-size: 0.95rem;
}
}

/* ========================================
NAVBAR
======================================== */
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
background: rgba(10, 10, 10, 0.92);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(255, 255, 255, 0.03);
transition: background 0.4s ease;
padding: 0.4rem 3.2rem;
}

.navbar.scrolled {
background: rgba(10, 10, 10, 0.98);
}

.navbar-inner {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1240px;
margin: 0 auto;
}

.navbar .logo {
display: flex;
align-items: center;
gap: 0.6rem;
text-decoration: none;
}

.navbar .logo img {
height: 26px;
width: auto;
filter: brightness(0) invert(1);
}

.navbar .logo .brand-name {
font-size: 0.85rem;
font-weight: 600;
color: var(--white);
letter-spacing: 0.06em;
}

.navbar .logo .brand-name span {
color: var(--gold-light);
}

.navbar-right {
display: flex;
align-items: center;
gap: 1.5rem;
}

.nav-dropdown {
position: relative;
}

.nav-dropdown .dropdown-toggle {
background: none;
border: none;
color: rgba(255, 255, 255, 0.4);
font-size: 0.7rem;
font-weight: 500;
font-family: inherit;
cursor: pointer;
display: flex;
align-items: center;
gap: 0.3rem;
padding: 0.3rem 0.6rem;
transition: color 0.3s;
letter-spacing: 0.04em;
}

.nav-dropdown .dropdown-toggle:hover {
color: var(--white);
}

.nav-dropdown .dropdown-toggle .arrow {
font-size: 0.5rem;
transition: transform 0.3s;
}

.nav-dropdown .dropdown-toggle .arrow.open {
transform: rotate(180deg);
}

.nav-dropdown .dropdown-menu {
position: absolute;
top: 100%;
left: 0;
min-width: 190px;
background: rgba(10, 10, 10, 0.98);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.04);
border-radius: 12px;
padding: 0.4rem 0;
opacity: 0;
visibility: hidden;
transform: translateY(-8px);
transition: all 0.3s ease;
z-index: 1001;
margin-top: 4px;
}

.nav-dropdown .dropdown-menu.show {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.nav-dropdown .dropdown-menu a {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1.2rem;
color: rgba(255, 255, 255, 0.4);
text-decoration: none;
font-size: 0.7rem;
font-weight: 400;
transition: all 0.2s ease;
font-family: inherit;
}

.nav-dropdown .dropdown-menu a:hover {
background: rgba(255, 255, 255, 0.03);
color: var(--white);
}

.nav-dropdown .dropdown-menu .menu-divider {
height: 1px;
background: rgba(255, 255, 255, 0.03);
margin: 0.2rem 1rem;
}

.nav-dropdown .dropdown-menu .nav-link-digital {
color: var(--white) !important;
background: var(--gradient-gold);
font-weight: 600 !important;
border-radius: 40px;
margin: 0.3rem 0.6rem;
padding: 0.4rem 1rem;
justify-content: center;
}

.nav-dropdown .dropdown-menu .nav-link-digital:hover {
opacity: 0.9;
}

.navbar-right .nav-cta {
background: var(--gold);
color: var(--white) !important;
padding: 0.3rem 1.2rem;
border-radius: 40px;
font-weight: 600;
font-size: 0.65rem;
letter-spacing: 0.02em;
transition: all 0.3s ease;
border: none;
cursor: pointer;
font-family: inherit;
}

.navbar-right .nav-cta:hover {
background: var(--gold-light);
transform: scale(1.04);
}

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

.hamburger span {
display: block;
width: 24px;
height: 2px;
background: var(--white);
border-radius: 2px;
transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
opacity: 0;
}

.hamburger.active span:nth-child(3) {
transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-menu {
display: none;
position: fixed;
top: 68px;
left: 0;
right: 0;
background: rgba(10, 10, 10, 0.98);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(255, 255, 255, 0.03);
padding: 1.2rem 2rem;
flex-direction: column;
gap: 0.5rem;
z-index: 999;
transform: translateY(-120%);
transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open {
transform: translateY(0);
}

.mobile-menu a {
color: rgba(255, 255, 255, 0.4);
text-decoration: none;
font-size: 0.85rem;
font-weight: 500;
padding: 0.5rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.03);
transition: color 0.3s;
font-family: inherit;
}

.mobile-menu a:hover {
color: var(--white);
}

.mobile-menu .mobile-divider {
height: 1px;
background: rgba(255, 255, 255, 0.03);
margin: 0.2rem 0;
}

.mobile-menu .mobile-link-digital {
background: var(--gradient-gold);
color: var(--white) !important;
padding: 0.5rem 1rem;
border-radius: 40px;
text-align: center;
font-weight: 700;
border-bottom: none;
margin-top: 0.3rem;
}

.mobile-menu .mobile-link-digital:hover {
opacity: 0.9;
}

@media (max-width: 768px) {
.navbar {
padding: 0.4rem 1.2rem;
}
.navbar .logo .brand-name {
font-size: 0.7rem;
}
.navbar .logo img {
height: 20px;
}
.nav-dropdown {
display: none;
}
.hamburger {
display: flex;
}
.mobile-menu {
display: flex;
}
.navbar-right .nav-cta {
font-size: 0.55rem;
padding: 0.25rem 0.8rem;
}
}

@media (min-width: 769px) {
.mobile-menu {
display: none !important;
}
}

@media (max-width: 480px) {
.navbar {
padding: 0.3rem 0.8rem;
}
.navbar .logo .brand-name {
font-size: 0.6rem;
}
.navbar .logo img {
height: 18px;
}
.navbar-right .nav-cta {
font-size: 0.5rem;
padding: 0.2rem 0.6rem;
}
.mobile-menu {
top: 56px;
padding: 1rem 1.2rem;
}
.mobile-menu a {
font-size: 0.75rem;
padding: 0.4rem 0;
}
}

/* ========================================
MUSIC CONTROL
======================================== */
.music-control {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 999;
background: rgba(10, 10, 10, 0.85);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.04);
border-radius: 50%;
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
color: var(--white);
}

.music-control:hover {
transform: scale(1.08);
background: rgba(255, 255, 255, 0.06);
}

.music-control.playing svg {
animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}

/* ========================================
QRIS POPUP
======================================== */
.qris-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 10, 10, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}

.qris-popup-overlay.active {
  display: flex;
}

.qris-popup-content {
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.qris-popup-content .qr-image {
  width: 280px;
  height: 280px;
  margin: 0 auto 1.5rem;
  background: white;
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qris-popup-content .qr-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qris-popup-content .total-display {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.03);
  padding: 1rem;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.qris-popup-content .label-text {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.qris-popup-content .dana-info {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
  margin-bottom: 1.5rem;
}

.qris-popup-content .dana-info span {
  color: var(--gold-light);
}

.qris-popup-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.qris-popup-actions .btn-confirm {
  background: var(--green);
  color: white;
  border: none;
  padding: 0.8rem 2.5rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qris-popup-actions .btn-confirm:hover {
  transform: scale(1.05);
}

.qris-popup-actions .btn-cancel {
  background: rgba(255,255,255,0.04);
  color: white;
  border: none;
  padding: 0.8rem 2.5rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qris-popup-actions .btn-cancel:hover {
  background: rgba(255,255,255,0.08);
}

@media (max-width: 640px) {
  .qris-popup-content .qr-image {
    width: 220px;
    height: 220px;
  }
  .qris-popup-content .total-display {
    font-size: 1.5rem;
  }
}

/* ========================================
HERO
======================================== */
.hero-main {
min-height: 100vh;
display: flex;
align-items: center;
padding: 6rem 1.5rem 4rem 1.5rem;
position: relative;
overflow: hidden;
background: var(--black);
width: 100%;
}

.hero-main .bg-video {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
opacity: 0.25;
}

.hero-main .bg-video video {
width: 100%;
height: 100%;
object-fit: cover;
}

.hero-main .bg-video::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(10,10,10,0.7), rgba(20,20,20,0.5));
z-index: 1;
}

.hero-main .content {
position: relative;
z-index: 2;
max-width: 1240px;
margin: 0 auto;
width: 100%;
display: grid;
grid-template-columns: 1fr 1.1fr;
gap: 4rem;
align-items: center;
}

.hero-main .text .pre-title {
font-size: 0.7rem;
font-weight: 500;
letter-spacing: 0.3em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.3);
margin-bottom: 1.6rem;
}

.hero-main .text h1 {
font-size: clamp(2.8rem, 7.5vw, 5.8rem);
font-weight: 700;
line-height: 1.02;
letter-spacing: -0.04em;
color: var(--white);
margin-bottom: 1.8rem;
}

.hero-main .text h1 .line {
display: block;
overflow: hidden;
}

.hero-main .text h1 .line span {
display: block;
transform: translateY(110%);
opacity: 0;
animation: textReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-main .text h1 .line:nth-child(1) span { animation-delay: 0.1s; }
.hero-main .text h1 .line:nth-child(2) span { animation-delay: 0.25s; }
.hero-main .text h1 .line:nth-child(3) span { animation-delay: 0.4s; }
.hero-main .text h1 .line:nth-child(4) span { animation-delay: 0.55s; }

@keyframes textReveal {
0% { transform: translateY(110%); opacity: 0; }
100% { transform: translateY(0); opacity: 1; }
}

.hero-main .text .sub {
font-size: 1.1rem;
font-weight: 400;
color: rgba(255, 255, 255, 0.4);
max-width: 440px;
line-height: 1.7;
margin-bottom: 2.8rem;
}

.hero-main .text .nav-cta {
background: var(--gold);
color: var(--white) !important;
padding: 0.9rem 2.8rem;
font-size: 0.85rem;
border-radius: 60px;
border: none;
cursor: pointer;
font-family: inherit;
font-weight: 600;
transition: all 0.3s ease;
}

.hero-main .text .nav-cta:hover {
background: var(--gold-light);
transform: scale(1.04);
}

.hero-main .media {
position: relative;
width: 100%;
aspect-ratio: 4/3;
background: rgba(255, 255, 255, 0.02);
border-radius: 28px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-main .media img {
width: 100%;
height: 100%;
object-fit: cover;
}

.hero-main .media .badge {
position: absolute;
bottom: 24px;
left: 24px;
background: rgba(255, 255, 255, 0.04);
backdrop-filter: blur(12px);
padding: 0.4rem 1.2rem;
border-radius: 40px;
border: 1px solid rgba(255, 255, 255, 0.04);
font-size: 0.65rem;
color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
.hero-main .content {
grid-template-columns: 1fr;
gap: 3rem;
}
.hero-main {
padding: 6rem 1.5rem 2rem 1.5rem;
}
}

@media (max-width: 640px) {
.hero-main {
padding: 5rem 1rem 1.5rem 1rem;
}
.hero-main .content {
gap: 2rem;
}
.hero-main .text h1 {
font-size: clamp(2.2rem, 10vw, 3.2rem);
}
.hero-main .text .sub {
font-size: 0.95rem;
max-width: 100%;
}
.hero-main .media {
border-radius: 20px;
aspect-ratio: 16/10;
}
}

/* ========================================
SECTION KATALOG
======================================== */
.catalog-hero {
padding: 6rem 1.5rem 4rem 1.5rem;
position: relative;
background: var(--black);
width: 100%;
}

.catalog-hero.dark {
background: var(--black);
}

.catalog-hero .container {
max-width: 1240px;
width: 100%;
margin: 0 auto;
padding: 0 0.5rem;
}

.catalog-hero .label {
font-size: 0.65rem;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 1rem;
font-weight: 600;
}

.catalog-hero.dark .label {
color: var(--gold-light);
}

.catalog-hero h2 {
font-size: clamp(2.8rem, 5.5vw, 4.8rem);
font-weight: 700;
letter-spacing: -0.03em;
line-height: 1.05;
color: var(--white);
margin-bottom: 1.2rem;
}

.catalog-hero.dark h2 {
color: var(--white);
}

.catalog-hero .desc {
font-size: 1.1rem;
color: var(--gray-500);
max-width: 560px;
line-height: 1.8;
margin-bottom: 2.8rem;
}

.catalog-hero.dark .desc {
color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 640px) {
.catalog-hero {
padding: 5rem 1rem 1.5rem 1rem;
}
.catalog-hero h2 {
font-size: clamp(2rem, 8vw, 2.8rem);
}
.catalog-hero .desc {
font-size: 0.95rem;
}
}

/* ========================================
PORTFOLIO GRID
======================================== */
.portfolio-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
margin: 2rem 0;
}

.portfolio-grid .item {
aspect-ratio: 4/3;
background: var(--gray-100);
border-radius: 16px;
overflow: hidden;
border: 1px solid var(--gray-300);
transition: transform 0.4s ease;
}

.portfolio-grid .item:hover {
transform: scale(1.02);
}

.portfolio-grid .item img,
.portfolio-grid .item video {
width: 100%;
height: 100%;
object-fit: cover;
}

@media (max-width: 1024px) {
.portfolio-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 640px) {
.portfolio-grid {
grid-template-columns: repeat(2, 1fr);
gap: 0.8rem;
}
.portfolio-grid .item {
border-radius: 12px;
}
}

/* ========================================
PRICELIST
======================================== */
.pricelist {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1.5rem;
margin: 2rem 0;
}

.pricelist .card {
background: var(--gray-100);
border-radius: 16px;
padding: 2rem;
border: 1px solid var(--gray-300);
transition: all 0.3s ease;
}

.pricelist .card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
border-color: var(--gold);
}

.pricelist .card .name {
font-size: 1.1rem;
font-weight: 600;
color: var(--white);
margin-bottom: 0.3rem;
}

.pricelist .card .price {
font-size: 1.4rem;
font-weight: 700;
color: var(--gold);
margin-bottom: 0.5rem;
}

.pricelist .card .desc {
font-size: 0.85rem;
color: var(--gray-500);
line-height: 1.6;
}

.pricelist .card .btn-order {
margin-top: 1rem;
background: var(--gold);
color: var(--white);
border: none;
padding: 0.5rem 1.5rem;
border-radius: 40px;
font-weight: 600;
font-size: 0.75rem;
cursor: pointer;
transition: all 0.3s ease;
font-family: inherit;
}

.pricelist .card .btn-order:hover {
background: var(--gold-light);
transform: scale(1.04);
}

@media (max-width: 640px) {
.pricelist {
grid-template-columns: 1fr 1fr;
gap: 0.8rem;
}
.pricelist .card {
padding: 1.2rem;
}
.pricelist .card .price {
font-size: 1.1rem;
}
}

@media (max-width: 420px) {
.pricelist {
grid-template-columns: 1fr;
}
}

/* ========================================
PACKAGE GRID
======================================== */
.package-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
margin: 2rem 0;
}

.package-grid .package-card {
background: var(--gray-100);
border-radius: 16px;
padding: 2rem;
border: 1px solid var(--gray-300);
transition: all 0.4s ease;
position: relative;
}

.package-grid .package-card:hover {
transform: translateY(-6px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
border-color: var(--gold);
background: var(--gray-200);
}

.package-grid .package-card .badge {
display: inline-block;
padding: 0.2rem 0.8rem;
border-radius: 40px;
font-size: 0.55rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 0.8rem;
}

.package-grid .package-card .badge.starter {
background: var(--gray-300);
color: var(--gray-700);
}

.package-grid .package-card .badge.bestseller {
background: var(--gold);
color: var(--white);
}

.package-grid .package-card .badge.enterprise {
background: var(--gradient-gold);
color: var(--white);
}

.package-grid .package-card .price {
font-size: 1.8rem;
font-weight: 700;
color: var(--gold);
margin-bottom: 0.2rem;
}

.package-grid .package-card .price-note {
font-size: 0.65rem;
color: var(--gray-500);
margin-bottom: 1rem;
}

.package-grid .package-card .target {
font-size: 0.8rem;
color: var(--gray-500);
margin-bottom: 1.2rem;
padding: 0.6rem 1rem;
background: var(--black);
border-radius: 10px;
border-left: 3px solid var(--gold);
}

.package-grid .package-card .target strong {
color: var(--white);
display: block;
margin-bottom: 0.2rem;
}

.package-grid .package-card .features {
margin-bottom: 1.2rem;
}

.package-grid .package-card .features li {
list-style: none;
color: var(--gray-500);
font-size: 0.8rem;
padding: 0.2rem 0;
line-height: 1.6;
}

.package-grid .package-card .features li::before {
content: '✓ ';
color: var(--gold);
font-weight: 700;
}

.package-grid .package-card .features .feature-highlight {
color: var(--gold);
}

.package-grid .package-card .time-estimate {
font-size: 0.6rem;
color: var(--gray-500);
padding: 0.5rem 1rem;
background: var(--black);
border-radius: 40px;
display: inline-block;
margin-bottom: 1rem;
}

.package-grid .package-card .btn-order-package {
width: 100%;
padding: 0.7rem;
border-radius: 40px;
font-weight: 600;
font-size: 0.8rem;
cursor: pointer;
transition: all 0.3s ease;
border: none;
font-family: inherit;
}

.package-grid .package-card .btn-order-package:hover {
transform: scale(1.02);
}

.package-grid .package-card .btn-order-package.gold {
background: var(--gold);
color: var(--white);
}

.package-grid .package-card .btn-order-package.gold:hover {
background: var(--gold-light);
box-shadow: 0 4px 20px var(--gold-glow);
}

.package-grid .package-card .btn-order-package.white {
background: var(--white);
color: var(--black);
border: 1px solid var(--gray-300);
}

.package-grid .package-card .btn-order-package.white:hover {
background: var(--gray-200);
}

.package-grid .package-card.best-seller {
border-color: var(--gold);
background: rgba(212, 163, 115, 0.05);
}

@media (max-width: 1024px) {
.package-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.package-grid {
grid-template-columns: 1fr;
max-width: 420px;
margin: 1.5rem auto;
}
.package-grid .package-card {
padding: 1.5rem;
}
}

@media (max-width: 640px) {
.package-grid {
max-width: 100%;
}
.package-grid .package-card .price {
font-size: 1.4rem;
}
.package-grid .package-card {
padding: 1.2rem;
}
}

/* ========================================
COMPARISON TABLE
======================================== */
.comparison-table {
margin-top: 2rem;
background: var(--gray-100);
border-radius: 16px;
padding: 1.5rem;
border: 1px solid var(--gray-300);
overflow-x: auto;
}

.comparison-table table {
width: 100%;
border-collapse: collapse;
font-size: 0.7rem;
min-width: 600px;
}

.comparison-table th {
text-align: left;
padding: 0.6rem 0.8rem;
color: var(--gray-500);
font-weight: 500;
border-bottom: 1px solid var(--gray-300);
}

.comparison-table th.center {
text-align: center;
}

.comparison-table td {
padding: 0.5rem 0.8rem;
color: var(--gray-500);
border-bottom: 1px solid var(--gray-200);
}

.comparison-table td.center {
text-align: center;
}

.comparison-table td .check {
color: var(--green);
font-weight: 700;
}

.comparison-table td .cross {
color: var(--gray-400);
}

.comparison-table td .gold-text {
color: var(--gold);
font-weight: 600;
}

.comparison-table tr:last-child td {
border-bottom: none;
}

@media (max-width: 768px) {
.comparison-table {
font-size: 0.6rem;
}
.comparison-table td, .comparison-table th {
padding: 0.4rem 0.5rem;
}
}

/* ========================================
ADD-ON GRID
======================================== */
.addon-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
gap: 1rem;
margin: 1.5rem 0;
}

.addon-grid .addon-card {
background: var(--gray-100);
border-radius: 14px;
padding: 1.2rem;
border: 1px solid var(--gray-300);
text-align: center;
transition: all 0.3s ease;
}

.addon-grid .addon-card:hover {
background: var(--gray-200);
transform: translateY(-2px);
}

.addon-grid .addon-card .addon-name {
font-size: 0.85rem;
font-weight: 600;
color: var(--white);
}

.addon-grid .addon-card .addon-price {
font-size: 0.9rem;
font-weight: 700;
color: var(--gold);
margin-top: 0.2rem;
}

.addon-grid .addon-card .addon-desc {
font-size: 0.65rem;
color: var(--gray-500);
margin-top: 0.2rem;
}

@media (max-width: 640px) {
.addon-grid {
grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 420px) {
.addon-grid {
grid-template-columns: 1fr;
}
}

/* ========================================
DEMO BUTTONS
======================================== */
.demo-buttons {
display: flex;
gap: 0.8rem;
flex-wrap: wrap;
justify-content: center;
margin: 1.5rem 0;
}

.demo-buttons .btn-demo {
background: var(--gray-100);
color: var(--white);
border: 1px solid var(--gray-300);
padding: 0.5rem 1.5rem;
border-radius: 40px;
cursor: pointer;
font-size: 0.7rem;
font-family: inherit;
transition: all 0.3s ease;
}

.demo-buttons .btn-demo:hover {
background: var(--gray-200);
border-color: var(--gold);
}

.consultation-btn {
text-align: center;
margin-top: 2.5rem;
}

.consultation-btn .btn-consult {
padding: 1rem 3rem;
font-size: 1rem;
background: var(--gold);
color: var(--white);
border: none;
border-radius: 60px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
font-family: inherit;
}

.consultation-btn .btn-consult:hover {
background: var(--gold-light);
transform: scale(1.04);
box-shadow: 0 8px 32px var(--gold-glow);
}

@media (max-width: 640px) {
.demo-buttons .btn-demo {
font-size: 0.6rem;
padding: 0.4rem 1rem;
}
.consultation-btn .btn-consult {
padding: 0.8rem 2rem;
font-size: 0.85rem;
}
}

/* ========================================
TESTIMONI
======================================== */
.testimoni-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}

.testimoni-card {
background: var(--gray-100);
border-radius: 16px;
padding: 1.5rem;
border: 1px solid var(--gray-300);
transition: all 0.3s ease;
}

.testimoni-card:hover {
border-color: var(--gold);
transform: translateY(-3px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.testimoni-card .avatar {
width: 44px;
height: 44px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1rem;
flex-shrink: 0;
color: var(--white);
background: var(--gold);
}

.testimoni-card .client-name {
font-weight: 600;
font-size: 0.9rem;
color: var(--white);
}

.testimoni-card .client-business {
color: var(--gray-500);
font-size: 0.7rem;
}

.testimoni-card .stars {
color: var(--gold);
font-size: 0.65rem;
letter-spacing: 0.1em;
}

.testimoni-card .testimoni-text {
color: var(--gray-500);
font-size: 0.8rem;
line-height: 1.7;
margin-bottom: 0.8rem;
}

.testimoni-card .testimoni-link {
color: var(--gold);
font-size: 0.7rem;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.3rem;
border-bottom: 1px solid rgba(212, 163, 115, 0.15);
padding-bottom: 0.1rem;
transition: border-color 0.3s ease;
}

.testimoni-card .testimoni-link:hover {
border-color: var(--gold);
}

.testimoni-card .testimoni-service {
font-size: 0.6rem;
color: var(--gray-400);
background: var(--gray-200);
padding: 0.15rem 0.6rem;
border-radius: 40px;
display: inline-block;
margin-top: 0.3rem;
}

@media (max-width: 768px) {
.testimoni-grid {
grid-template-columns: 1fr;
max-width: 420px;
margin: 0 auto;
}
}

@media (max-width: 640px) {
.testimoni-grid {
max-width: 100%;
}
}

/* ========================================
FORM TESTIMONI
======================================== */
.testimoni-form {
margin-top: 2rem;
background: var(--gray-100);
border-radius: 16px;
padding: 1.5rem;
border: 1px solid var(--gray-300);
}

.testimoni-form .form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.8rem;
margin-bottom: 0.8rem;
}

.testimoni-form input,
.testimoni-form textarea,
.testimoni-form select {
padding: 0.7rem 1rem;
background: var(--black);
border: 1px solid var(--gray-300);
border-radius: 10px;
color: var(--white);
font-family: inherit;
font-size: 0.8rem;
transition: border-color 0.3s ease;
width: 100%;
}

.testimoni-form input:focus,
.testimoni-form textarea:focus,
.testimoni-form select:focus {
outline: none;
border-color: var(--gold);
}

.testimoni-form textarea {
resize: vertical;
min-height: 70px;
}

.testimoni-form .btn-add-testimoni {
background: var(--gold);
color: var(--white);
border: none;
padding: 0.7rem 2rem;
border-radius: 40px;
font-weight: 600;
font-size: 0.8rem;
cursor: pointer;
transition: all 0.3s ease;
font-family: inherit;
}

.testimoni-form .btn-add-testimoni:hover {
background: var(--gold-light);
transform: scale(1.04);
}

.testimoni-form .full-width {
grid-column: 1 / -1;
}

@media (max-width: 640px) {
.testimoni-form .form-row {
grid-template-columns: 1fr;
}
}

/* ========================================
DESAIN BANGUNAN - SCROLLABLE CARDS
======================================== */
.design-scroll-wrapper {
  overflow-x: auto;
  padding: 0.5rem 0 1.5rem 0;
  margin: 0 -0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.design-scroll-wrapper::-webkit-scrollbar {
  height: 4px;
}

.design-scroll-wrapper::-webkit-scrollbar-track {
  background: var(--gray-200);
  border-radius: 4px;
}

.design-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.design-scroll-inner {
  display: flex;
  gap: 1.2rem;
  padding: 0 0.5rem;
  min-width: max-content;
}

.design-card {
  flex: 0 0 280px;
  background: var(--gray-100);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--gray-300);
  scroll-snap-align: start;
  transition: all 0.3s ease;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.design-card:hover {
  border-color: var(--gold);
  background: var(--gray-200);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.design-card .badge {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  border-radius: 40px;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  align-self: flex-start;
}

.design-card .badge.basic {
  background: var(--gray-300);
  color: var(--gray-700);
}

.design-card .badge.standard {
  background: var(--gray-400);
  color: var(--white);
}

.design-card .badge.professional {
  background: var(--gold);
  color: var(--white);
}

.design-card .badge.premium {
  background: var(--gradient-gold);
  color: var(--white);
}

.design-card .design-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.1rem;
}

.design-card .design-price-note {
  font-size: 0.6rem;
  color: var(--gray-500);
  margin-bottom: 0.8rem;
}

.design-card .design-target {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  background: var(--black);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}

.design-card .design-target strong {
  color: var(--white);
  display: block;
  margin-bottom: 0.1rem;
}

.design-card .design-features {
  flex: 1;
  margin-bottom: 1rem;
}

.design-card .design-features li {
  list-style: none;
  color: var(--gray-500);
  font-size: 0.75rem;
  padding: 0.15rem 0;
  line-height: 1.5;
}

.design-card .design-features li::before {
  content: '✓ ';
  color: var(--gold);
  font-weight: 700;
}

.design-card .design-features .feature-highlight {
  color: var(--gold);
}

.design-card .design-time {
  font-size: 0.55rem;
  color: var(--gray-500);
  padding: 0.3rem 0.8rem;
  background: var(--black);
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.design-card .btn-design-order {
  width: 100%;
  padding: 0.6rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
  background: var(--gold);
  color: var(--white);
}

.design-card .btn-design-order:hover {
  background: var(--gold-light);
  transform: scale(1.02);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.design-card.best-seller {
  border-color: var(--gold);
  background: rgba(212, 163, 115, 0.05);
}

.scroll-indicator {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.6rem;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

.scroll-indicator span {
  display: inline-block;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(8px); }
}

@media (max-width: 768px) {
.design-card {
flex: 0 0 260px;
min-height: 440px;
padding: 1.2rem;
}
}

@media (max-width: 640px) {
.design-card {
flex: 0 0 240px;
min-height: 400px;
padding: 1rem;
}
.design-card .design-price {
font-size: 1.3rem;
}
}

@media (max-width: 420px) {
.design-card {
flex: 0 0 220px;
min-height: 380px;
padding: 0.8rem;
}
.design-card .design-features li {
font-size: 0.65rem;
}
}

/* ========================================
PERHITUNGAN DESAIN
======================================== */
.design-calculation {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 2rem;
  border: 1px solid var(--gray-300);
  overflow-x: auto;
}

.design-calculation h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.design-calculation .calc-sub {
  color: var(--gray-500);
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

.design-calculation .calc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  text-align: center;
  min-width: 280px;
}

.design-calculation .calc-item {
  background: var(--black);
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid var(--gray-300);
}

.design-calculation .calc-item .calc-label {
  color: var(--gray-500);
  font-size: 0.55rem;
}

.design-calculation .calc-item .calc-value {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

.design-calculation .calc-note {
  color: var(--gray-500);
  font-size: 0.6rem;
  margin-top: 0.8rem;
  text-align: center;
}

@media (max-width: 500px) {
.design-calculation .calc-grid {
  grid-template-columns: repeat(2, 1fr);
}
}

/* ========================================
SECTION DARK
======================================== */
.section-dark {
background: var(--black);
color: var(--white);
padding: 6rem 1.5rem;
width: 100%;
}

.section-dark .container {
max-width: 1240px;
margin: 0 auto;
padding: 0 0.5rem;
}

.section-dark .label {
font-size: 0.65rem;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--gold-light);
margin-bottom: 1rem;
font-weight: 500;
}

.section-dark h2 {
font-size: clamp(2.4rem, 4.5vw, 4rem);
font-weight: 600;
letter-spacing: -0.03em;
line-height: 1.05;
margin-bottom: 1.2rem;
color: var(--white);
}

.section-dark .desc {
font-size: 1.05rem;
color: rgba(255, 255, 255, 0.3);
max-width: 480px;
line-height: 1.8;
}

@media (max-width: 640px) {
.section-dark {
padding: 3rem 1rem;
}
.section-dark h2 {
font-size: clamp(1.8rem, 7vw, 2.4rem);
}
}

/* ========================================
FOOTER
======================================== */
.footer-minimal {
padding: 2rem 1.5rem;
background: var(--black);
border-top: 1px solid rgba(255, 255, 255, 0.03);
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.7rem;
color: rgba(255, 255, 255, 0.15);
letter-spacing: 0.02em;
flex-wrap: wrap;
gap: 1rem;
max-width: 1240px;
margin: 0 auto;
}

.footer-minimal .socials {
display: flex;
gap: 2.4rem;
}

.footer-minimal .socials a {
color: rgba(255, 255, 255, 0.15);
text-decoration: none;
transition: color 0.3s;
}

.footer-minimal .socials a:hover {
color: var(--white);
}

@media (max-width: 640px) {
.footer-minimal {
flex-direction: column;
gap: 1.2rem;
text-align: center;
padding: 2rem 1rem;
}
}

/* ========================================
REVEAL ANIMATION
======================================== */
.reveal {
opacity: 0;
transform: translateY(40px);
transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
opacity: 1;
transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }