/* =========================================================
   Sparkling Premium Shoe Laundry - Main Stylesheet
   Glassmorphism | Deep Navy | Electric Blue | Premium Feel
   ========================================================= */

:root {
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --secondary: #0a1628;
    --secondary-light: #0d2137;
    --accent: #7b2cbf;
    --white: #ffffff;
    --ice: #e6f7ff;
    --gray: rgba(255,255,255,0.6);
    --danger: #ff4757;
    --success: #2ed573;
    --warning: #ffa502;
    --glass: rgba(255,255,255,0.03);
    --glass-border: rgba(255,255,255,0.08);
    --shadow-glow: 0 0 40px rgba(0,212,255,0.15);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a1628 0%, #0d2137 50%, #0a1628 100%);
    color: var(--ice);
    min-height: 100vh;
    overflow-x: hidden;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--secondary); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* NAVBAR */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,22,40,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s;
}
.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0 30px;
    display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { width: 45px; height: 45px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(0,212,255,0.5)); }
.logo-text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--white); letter-spacing: 1px; }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
    color: var(--gray); text-decoration: none; padding: 8px 16px; border-radius: 10px;
    font-size: 0.9rem; font-weight: 500; transition: all 0.3s; display: flex; align-items: center; gap: 8px;
}
.nav-link:hover, .nav-link.aktif { color: var(--primary); background: rgba(0,212,255,0.1); }
.nav-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white) !important; font-weight: 600;
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,212,255,0.3); }
.nav-logout { color: var(--danger) !important; }
.nav-logout:hover { background: rgba(255,71,87,0.1) !important; }
.lang-switcher { display: flex; align-items: center; gap: 6px; margin-left: 15px; padding-left: 15px; border-left: 1px solid var(--glass-border); }
.lang-flag { color: var(--gray); text-decoration: none; font-size: 0.8rem; font-weight: 700; padding: 4px 8px; border-radius: 6px; transition: all 0.3s; }
.lang-flag.aktif { color: var(--primary); background: rgba(0,212,255,0.15); }
.lang-divider { color: var(--gray); font-size: 0.8rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.nav-toggle span { width: 25px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* HERO */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding: 100px 20px 60px;
}
.hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0,212,255,0.08) 0%, transparent 60%),
                 radial-gradient(ellipse at 70% 80%, rgba(123,44,191,0.05) 0%, transparent 50%);
}
.hero-bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-bubbles span {
    position: absolute; bottom: -100px; width: 40px; height: 40px;
    background: rgba(0,212,255,0.1); border-radius: 50%;
    animation: bubble-rise 15s infinite ease-in;
}
.hero-bubbles span:nth-child(1) { left: 10%; width: 20px; height: 20px; animation-duration: 12s; animation-delay: 0s; }
.hero-bubbles span:nth-child(2) { left: 20%; width: 60px; height: 60px; animation-duration: 18s; animation-delay: 2s; }
.hero-bubbles span:nth-child(3) { left: 35%; width: 30px; height: 30px; animation-duration: 14s; animation-delay: 4s; }
.hero-bubbles span:nth-child(4) { left: 50%; width: 50px; height: 50px; animation-duration: 20s; animation-delay: 1s; }
.hero-bubbles span:nth-child(5) { left: 65%; width: 25px; height: 25px; animation-duration: 16s; animation-delay: 3s; }
.hero-bubbles span:nth-child(6) { left: 75%; width: 45px; height: 45px; animation-duration: 13s; animation-delay: 5s; }
.hero-bubbles span:nth-child(7) { left: 85%; width: 35px; height: 35px; animation-duration: 19s; animation-delay: 2s; }
.hero-bubbles span:nth-child(8) { left: 15%; width: 55px; height: 55px; animation-duration: 17s; animation-delay: 6s; }
.hero-bubbles span:nth-child(9) { left: 45%; width: 15px; height: 15px; animation-duration: 11s; animation-delay: 7s; }
.hero-bubbles span:nth-child(10) { left: 90%; width: 40px; height: 40px; animation-duration: 15s; animation-delay: 4s; }
@keyframes bubble-rise {
    0% { transform: translateY(0) scale(1); opacity: 0.6; }
    100% { transform: translateY(-120vh) scale(0.3); opacity: 0; }
}
.hero-content { text-align: center; position: relative; z-index: 2; max-width: 800px; }
.hero-logo-float { margin-bottom: 30px; }
.hero-logo-img { width: 180px; height: 180px; object-fit: contain; filter: drop-shadow(0 0 30px rgba(0,212,255,0.6)); animation: float-logo 4s ease-in-out infinite; }
@keyframes float-logo { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(3deg); } }
.hero-title { margin-bottom: 20px; }
.sparkle-text {
    font-family: 'Montserrat', sans-serif; font-size: 4rem; font-weight: 900;
    background: linear-gradient(135deg, var(--white), var(--primary), var(--white));
    background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite; letter-spacing: 4px;
}
@keyframes shine { to { background-position: 200% center; } }
.hero-subtitle { font-size: 1.8rem; font-weight: 300; color: var(--gray); letter-spacing: 2px; }
.hero-desc { font-size: 1.1rem; color: var(--gray); max-width: 600px; margin: 0 auto 30px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; margin-bottom: 50px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 2.2rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 0.85rem; color: var(--gray); }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; color: var(--primary); font-size: 1.5rem; }
@keyframes bounce { 0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
    border-radius: 12px; font-weight: 600; font-size: 0.95rem; cursor: pointer;
    transition: all 0.3s; text-decoration: none; border: none; font-family: 'Poppins', sans-serif;
}
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,212,255,0.4); }
.btn-glow { box-shadow: 0 0 20px rgba(0,212,255,0.3); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--secondary); }
.btn-white { background: var(--white); color: var(--secondary); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,255,255,0.3); }
.btn-large { padding: 16px 40px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-order { background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3); color: var(--primary); margin-top: 15px; }
.btn-order:hover { background: var(--primary); color: var(--secondary); }

/* SECTIONS */
.section { padding: 80px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-badge {
    display: inline-block; padding: 6px 18px; background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.2); border-radius: 20px;
    color: var(--primary); font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 15px;
}
.section-title { font-size: 2.2rem; font-weight: 700; color: var(--white); margin-bottom: 15px; }
.section-desc { color: var(--gray); max-width: 600px; margin: 0 auto; font-size: 1rem; }

/* LAYANAN CARDS */
.layanan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.layanan-grid.full { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
.layanan-card {
    background: var(--glass); backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border); border-radius: 20px;
    padding: 35px; text-align: center; transition: all 0.4s; position: relative; overflow: hidden;
}
.layanan-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent); opacity: 0; transition: opacity 0.3s;
}
.layanan-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-glow); border-color: rgba(0,212,255,0.2); }
.layanan-card:hover::before { opacity: 1; }
.layanan-card.express { border-color: rgba(255,165,2,0.3); }
.layanan-card.express::before { background: linear-gradient(90deg, transparent, var(--warning), transparent); }
.express-badge {
    position: absolute; top: 15px; right: 15px;
    background: linear-gradient(135deg, var(--warning), #ff6348);
    color: var(--secondary); padding: 4px 12px; border-radius: 20px;
    font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; gap: 4px;
}
.express-badge.large { font-size: 0.8rem; padding: 6px 16px; }
.layanan-icon { width: 70px; height: 70px; background: rgba(0,212,255,0.1); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; color: var(--primary); }
.layanan-icon.large { width: 90px; height: 90px; font-size: 2.2rem; }
.layanan-nama { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.layanan-desc { color: var(--gray); font-size: 0.9rem; margin-bottom: 15px; line-height: 1.6; }
.layanan-meta { color: var(--gray); font-size: 0.8rem; margin-bottom: 15px; }
.layanan-meta-row { display: flex; justify-content: center; gap: 20px; color: var(--gray); font-size: 0.85rem; margin-bottom: 15px; }
.layanan-harga { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin-bottom: 5px; }
.layanan-harga small { font-size: 0.85rem; color: var(--gray); font-weight: 400; }
.layanan-harga.large { font-size: 2.2rem; }

/* LAYANAN SELECT (Order Page) */
.layanan-select { display: flex; flex-direction: column; gap: 12px; }
.layanan-option input { display: none; }
.layanan-box {
    background: var(--glass); border: 2px solid var(--glass-border); border-radius: 15px;
    padding: 20px; cursor: pointer; transition: all 0.3s;
}
.layanan-option input:checked + .layanan-box { border-color: var(--primary); background: rgba(0,212,255,0.08); box-shadow: 0 0 20px rgba(0,212,255,0.1); }
.layanan-box:hover { border-color: rgba(0,212,255,0.3); }
.layanan-box-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.layanan-box-name { font-weight: 700; color: var(--white); font-size: 1.1rem; }
.layanan-box-harga { font-weight: 800; color: var(--primary); }
.layanan-box-desc { color: var(--gray); font-size: 0.85rem; margin-bottom: 10px; }
.layanan-box-meta { display: flex; gap: 15px; font-size: 0.8rem; color: var(--gray); }
.express-tag { color: var(--warning); font-weight: 600; }

/* FITUR */
.fitur-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.fitur-card {
    background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 35px; transition: all 0.4s;
}
.fitur-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-glow); }
.fitur-icon { width: 60px; height: 60px; background: linear-gradient(135deg, rgba(0,212,255,0.2), rgba(0,212,255,0.05)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary); margin-bottom: 20px; }
.fitur-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.fitur-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

/* OUTLET */
.outlet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.outlet-card {
    background: var(--glass); border: 1px solid var(--glass-border); border-radius: 16px;
    padding: 25px; text-align: center; transition: all 0.3s;
}
.outlet-card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-5px); }
.outlet-map-icon { width: 50px; height: 50px; background: rgba(0,212,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; color: var(--primary); font-size: 1.2rem; }
.outlet-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.outlet-kota { color: var(--primary); font-weight: 600; font-size: 0.9rem; margin-bottom: 5px; }
.outlet-alamat { color: var(--gray); font-size: 0.8rem; margin-bottom: 8px; }
.outlet-telp { color: var(--gray); font-size: 0.85rem; }

/* CTA */
.cta-section { padding: 40px 20px; }
.cta-box {
    background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(123,44,191,0.1));
    border: 1px solid rgba(0,212,255,0.2); border-radius: 24px;
    padding: 60px 40px; text-align: center; backdrop-filter: blur(10px);
}
.cta-box h2 { font-size: 2rem; color: var(--white); margin-bottom: 15px; }
.cta-box p { color: var(--gray); margin-bottom: 25px; font-size: 1rem; }

/* INFO BOX */
.info-box { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 16px; padding: 30px; margin-top: 30px; }
.info-box h3 { color: var(--primary); font-size: 1.2rem; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.info-box p { color: var(--gray); margin-bottom: 15px; line-height: 1.7; }
.info-box ul { list-style: none; }
.info-box li { color: var(--gray); padding: 8px 0; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.info-box li i { color: var(--success); }

/* PAGE HEADER */
.page-header { padding: 120px 20px 60px; text-align: center; background: linear-gradient(180deg, rgba(0,212,255,0.05), transparent); }
.page-title { font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.page-desc { color: var(--gray); font-size: 1rem; }

/* FORMS */
.card-glass {
    background: var(--glass); backdrop-filter: blur(15px); border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 30px; margin-bottom: 20px;
}
.card-title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.card-title i { color: var(--primary); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; color: var(--gray); font-size: 0.85rem; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 16px; border: 1px solid var(--glass-border); border-radius: 12px;
    background: rgba(255,255,255,0.05); color: var(--white); font-size: 0.95rem;
    transition: all 0.3s; font-family: 'Poppins', sans-serif;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,212,255,0.1); background: rgba(255,255,255,0.08);
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-col { display: flex; flex-direction: column; }

/* UPLOAD ZONE */
.upload-zone {
    border: 2px dashed rgba(0,212,255,0.3); border-radius: 16px; padding: 40px;
    text-align: center; cursor: pointer; transition: all 0.3s; position: relative;
    background: rgba(0,212,255,0.02);
}
.upload-zone:hover, .upload-zone.dragover { border-color: var(--primary); background: rgba(0,212,255,0.05); }
.upload-prompt i { font-size: 3rem; color: var(--primary); margin-bottom: 15px; display: block; }
.upload-prompt p { color: var(--white); font-weight: 600; margin-bottom: 5px; }
.upload-prompt span { color: var(--gray); font-size: 0.9rem; }
.upload-prompt small { display: block; color: var(--gray); margin-top: 10px; font-size: 0.75rem; }
.upload-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-preview { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; margin-top: 15px; }
.preview-item { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 1; }
.preview-item img { width: 100%; height: 100%; object-fit: cover; }
.preview-remove { position: absolute; top: 5px; right: 5px; width: 24px; height: 24px; background: var(--danger); border: none; border-radius: 50%; color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; }

/* ORDER PAGE */
.order-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 25px; }
.order-right .sticky { position: sticky; top: 90px; }
.outlet-info-box { background: rgba(0,212,255,0.05); border: 1px solid rgba(0,212,255,0.15); border-radius: 12px; padding: 15px; margin-top: 15px; }
.outlet-info-box p { color: var(--gray); font-size: 0.85rem; margin-bottom: 5px; }
.outlet-info-box strong { color: var(--primary); }
.btn-detect { background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2); color: var(--primary); padding: 8px 16px; border-radius: 8px; cursor: pointer; font-size: 0.8rem; margin-top: 8px; display: inline-flex; align-items: center; gap: 6px; transition: all 0.3s; }
.btn-detect:hover { background: rgba(0,212,255,0.2); }
.summary-card { background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,153,204,0.05)); border-color: rgba(0,212,255,0.2); }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; color: var(--gray); font-size: 0.9rem; border-bottom: 1px solid var(--glass-border); }
.summary-row.total { border-bottom: none; padding-top: 15px; }
.summary-row.total span { color: var(--white); font-weight: 700; font-size: 1.1rem; }
.total-price { color: var(--primary) !important; font-size: 1.4rem !important; }
.summary-divider { height: 1px; background: var(--glass-border); margin: 5px 0; }

/* STATUS PAGE */
.search-box { max-width: 700px; margin: 0 auto 40px; }
.search-form { display: flex; gap: 10px; margin-bottom: 20px; }
.search-input-wrap { flex: 1; display: flex; align-items: center; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px; padding: 0 15px; }
.search-input-wrap i { color: var(--gray); margin-right: 10px; }
.search-input-wrap input { flex: 1; background: none; border: none; padding: 14px 0; color: var(--white); font-size: 1rem; outline: none; }
.qr-scan { text-align: center; }
.qr-scan p { color: var(--gray); margin-bottom: 10px; font-size: 0.9rem; }
.status-card { background: var(--glass); backdrop-filter: blur(15px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 40px; }
.status-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 30px; flex-wrap: wrap; gap: 20px; }
.status-code { display: flex; flex-direction: column; }
.code-label { color: var(--gray); font-size: 0.85rem; }
.code-value { font-size: 1.8rem; font-weight: 800; color: var(--primary); letter-spacing: 1px; }
.status-qr { text-align: center; }
.status-qr img { width: 120px; border-radius: 10px; }
.status-qr small { display: block; color: var(--gray); margin-top: 5px; font-size: 0.75rem; }
.status-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-bottom: 30px; }
.info-item { background: rgba(255,255,255,0.03); border-radius: 12px; padding: 15px; }
.info-label { display: block; color: var(--gray); font-size: 0.8rem; margin-bottom: 5px; }
.info-value { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.badge-pending { color: var(--warning); }
.badge-sukses { color: var(--success); }
.badge-gagal { color: var(--danger); }

/* PROGRESS BAR */
.progress-section { margin-bottom: 40px; }
.progress-section h3 { color: var(--white); margin-bottom: 25px; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; }
.progress-track { display: flex; align-items: center; justify-content: space-between; position: relative; overflow-x: auto; padding-bottom: 20px; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 80px; position: relative; z-index: 2; }
.step-icon { width: 45px; height: 45px; background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 0.9rem; transition: all 0.4s; }
.progress-step.active .step-icon { background: rgba(0,212,255,0.15); border-color: var(--primary); color: var(--primary); }
.progress-step.current .step-icon { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-color: var(--primary); color: var(--white); box-shadow: 0 0 20px rgba(0,212,255,0.4); animation: pulse-step 2s infinite; }
@keyframes pulse-step { 0%,100% { box-shadow: 0 0 20px rgba(0,212,255,0.4); } 50% { box-shadow: 0 0 30px rgba(0,212,255,0.7); } }
.step-label { font-size: 0.7rem; color: var(--gray); text-align: center; white-space: nowrap; }
.progress-step.active .step-label { color: var(--primary); font-weight: 600; }
.progress-step.current .step-label { color: var(--white); font-weight: 700; }
.step-pulse { position: absolute; width: 45px; height: 45px; border-radius: 50%; background: var(--primary); opacity: 0.3; animation: ripple 2s infinite; }
@keyframes ripple { 0% { transform: scale(1); opacity: 0.3; } 100% { transform: scale(2); opacity: 0; } }
.progress-line { flex: 1; height: 3px; background: rgba(255,255,255,0.05); margin: 0 5px; position: relative; top: -20px; min-width: 20px; }
.progress-line.active { background: linear-gradient(90deg, var(--primary), rgba(0,212,255,0.3)); }

/* TIMELINE */
.timeline-section { margin-bottom: 30px; }
.timeline-section h3 { color: var(--white); margin-bottom: 20px; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; }
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--primary), transparent); }
.timeline-item { position: relative; padding-bottom: 25px; }
.timeline-dot { position: absolute; left: -30px; top: 0; width: 26px; height: 26px; background: var(--secondary); border: 2px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.7rem; z-index: 2; }
.timeline-content { background: rgba(255,255,255,0.03); border-radius: 10px; padding: 12px 15px; }
.timeline-status { display: block; color: var(--white); font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.timeline-time { color: var(--gray); font-size: 0.75rem; }

/* FOTO GRID */
.foto-section { margin-bottom: 30px; }
.foto-section h3 { color: var(--white); margin-bottom: 15px; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; }
.foto-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 15px; }
.foto-item { border-radius: 12px; overflow: hidden; aspect-ratio: 1; border: 1px solid var(--glass-border); }
.foto-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.foto-item:hover img { transform: scale(1.05); }

/* PAYMENT */
.payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.payment-methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.method-option input { display: none; }
.method-box { display: flex; align-items: center; gap: 15px; padding: 20px; background: var(--glass); border: 2px solid var(--glass-border); border-radius: 15px; cursor: pointer; transition: all 0.3s; }
.method-option input:checked + .method-box { border-color: var(--primary); background: rgba(0,212,255,0.08); }
.method-icon { width: 50px; height: 50px; background: rgba(0,212,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--primary); }
.method-info h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.method-info p { color: var(--gray); font-size: 0.8rem; }
.payment-detail-row { display: flex; justify-content: space-between; padding: 12px 0; color: var(--gray); font-size: 0.9rem; border-bottom: 1px solid var(--glass-border); }
.payment-detail-row.total { border-bottom: none; padding-top: 15px; }
.payment-detail-row.total span { color: var(--white); font-weight: 700; }
.total-price { color: var(--primary) !important; font-size: 1.5rem; }
.payment-divider { height: 1px; background: var(--glass-border); margin: 5px 0; }
.qr-card { text-align: center; }
.qr-wrap { padding: 20px; }
.qr-image { width: 250px; border-radius: 12px; margin-bottom: 15px; }
.qr-instruction { color: var(--gray); font-size: 0.85rem; }
.demo-badge { background: var(--warning); color: var(--secondary); padding: 6px 12px; border-radius: 8px; font-size: 0.75rem; font-weight: 700; margin-bottom: 15px; display: inline-block; }
.payment-status-polling { margin-top: 20px; padding: 15px; background: rgba(0,212,255,0.05); border-radius: 10px; }
.payment-status-polling i { color: var(--primary); margin-right: 8px; }
.payment-status-polling span { color: var(--white); font-weight: 600; }
.payment-status-polling small { display: block; color: var(--gray); margin-top: 5px; font-size: 0.75rem; }
.transfer-card { text-align: center; }
.transfer-info { margin-bottom: 25px; }
.transfer-label { color: var(--gray); font-size: 0.85rem; margin-bottom: 10px; }
.transfer-amount { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.transfer-note { color: var(--gray); font-size: 0.85rem; }
.bank-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; }
.bank-item { display: flex; align-items: center; gap: 15px; background: rgba(255,255,255,0.03); border-radius: 12px; padding: 15px; text-align: left; }
.bank-logo { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 800; font-size: 0.7rem; }
.bank-detail { flex: 1; }
.bank-name { color: var(--white); font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.bank-number { color: var(--primary); font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.btn-copy { background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2); color: var(--primary); padding: 4px 10px; border-radius: 6px; cursor: pointer; font-size: 0.75rem; transition: all 0.3s; }
.btn-copy:hover { background: var(--primary); color: var(--secondary); }
.bank-an { color: var(--gray); font-size: 0.8rem; }
.transfer-hint { color: var(--gray); font-size: 0.8rem; margin-top: 15px; }
.transfer-hint i { color: var(--primary); margin-right: 5px; }

/* FOOTER */
.footer { background: rgba(0,0,0,0.3); border-top: 1px solid var(--glass-border); padding: 60px 20px 30px; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-logo { width: 60px; filter: drop-shadow(0 0 10px rgba(0,212,255,0.3)); }
.footer-brand h3 { color: var(--white); font-size: 1.3rem; }
.tagline { color: var(--primary); font-size: 0.9rem; }
.footer-links h4, .footer-contact h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; }
.footer-links a { display: block; color: var(--gray); text-decoration: none; padding: 8px 0; transition: color 0.3s; font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary); }
.footer-contact p { color: var(--gray); margin-bottom: 10px; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--primary); width: 20px; }
.footer-bottom { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--glass-border); }
.footer-bottom p { color: var(--gray); font-size: 0.8rem; }

/* ALERTS */
.alert-error { background: rgba(255,71,87,0.1); border: 1px solid rgba(255,71,87,0.2); color: #ff6b7a; padding: 15px 20px; border-radius: 12px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: rgba(46,213,115,0.1); border: 1px solid rgba(46,213,115,0.2); color: #7bed9f; padding: 15px 20px; border-radius: 12px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .order-grid, .payment-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu { display: none; position: absolute; top: 70px; left: 0; right: 0; background: rgba(10,22,40,0.98); flex-direction: column; padding: 20px; gap: 5px; border-bottom: 1px solid var(--glass-border); }
    .nav-menu.aktif { display: flex; }
    .nav-link { padding: 12px; width: 100%; }
    .lang-switcher { margin-left: 0; padding-left: 0; border: none; margin-top: 10px; }
    .sparkle-text { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 1.6rem; }
    .section { padding: 50px 15px; }
    .section-title { font-size: 1.6rem; }
    .footer-container { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .progress-track { padding-bottom: 10px; }
    .step-label { font-size: 0.6rem; }
    .step-icon { width: 35px; height: 35px; font-size: 0.75rem; }
    .status-header { flex-direction: column; align-items: center; }
    .search-form { flex-direction: column; }
}
@media (max-width: 480px) {
    .hero-logo-img { width: 120px; height: 120px; }
    .sparkle-text { font-size: 2rem; letter-spacing: 2px; }
    .hero-buttons { flex-direction: column; }
    .btn { padding: 12px 20px; font-size: 0.85rem; }
    .layanan-grid { grid-template-columns: 1fr; }
    .card-glass { padding: 20px; }
    .login-container { padding: 25px; margin: 10px; }
}
