/* =========================================
   BLUEPRINT PAGE STYLES (WHITE & GOLD)
   ========================================= */
.bg-white { background-color: #FFFFFF; margin: 0; }
.bg-soft { background-color: #F8F9FA; }

/* Navbar */
.nls-navbar { position: fixed; top: 0; left: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid #E5E7EB; z-index: 1000; }
.nls-navbar .logo a { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--gold-primary); text-decoration: none; letter-spacing: 2px; }
.btn-small { padding: 10px 20px; font-size: 0.9rem; }

/* Hero Section */
.bp-hero { position: relative; padding: 160px 5% 100px; text-align: center; overflow: hidden; background: #FFFFFF; }
.hero-glow-gold { position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 60%); border-radius: 50%; z-index: 0; pointer-events: none; }
.bp-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.bp-badge { background: rgba(197, 160, 89, 0.1); color: var(--gold-primary); padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; border: 1px solid rgba(197, 160, 89, 0.3); }
.bp-title { font-family: var(--font-serif); font-size: 4rem; color: #111; line-height: 1.1; margin-bottom: 25px; }
.bp-subtitle { font-size: 1.1rem; color: #666; line-height: 1.6; margin-bottom: 40px; max-width: 600px; }
.btn-scroll-down { color: #111; font-weight: 600; text-decoration: none; border-bottom: 1px solid #111; padding-bottom: 5px; transition: 0.3s; }
.btn-scroll-down:hover { color: var(--gold-primary); border-color: var(--gold-primary); }

/* Global Sections */
.bp-section { padding: 100px 5%; }
.bp-container { max-width: 1100px; margin: 0 auto; }
.bp-section-header { text-align: center; margin-bottom: 60px; }
.serif-heading { font-family: var(--font-serif); font-size: 2.5rem; color: #111; margin-bottom: 15px; }
.bp-section-header p { color: #666; font-size: 1.05rem; max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* The 3 Lenses Grid */
.lenses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.lens-card { background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 16px; padding: 40px 30px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: 0.4s; }
.lens-card:hover { transform: translateY(-10px); border-color: var(--gold-primary); box-shadow: 0 20px 40px rgba(197, 160, 89, 0.1); }
.lens-icon { font-size: 2rem; color: var(--gold-primary); margin-bottom: 20px; }
.lens-card h3 { font-family: var(--font-serif); font-size: 1.5rem; color: #111; margin-bottom: 5px; }
.lens-meta { font-size: 0.75rem; color: #999; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 20px; }
.lens-desc { font-size: 0.9rem; color: #555; margin-bottom: 25px; line-height: 1.6; }
.nls-bullet-list { list-style: none; padding: 0; text-align: left; display: flex; flex-direction: column; gap: 12px; }
.nls-bullet-list li { position: relative; padding-left: 20px; font-size: 0.85rem; color: #444; line-height: 1.5;}
.nls-bullet-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold-primary); font-size: 0.8rem; }

/* Correlation Matrix */
.matrix-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.matrix-card { background: #F8F9FA; border: 1px solid #E5E7EB; border-radius: 12px; padding: 30px; transition: 0.3s; }
.matrix-card:hover { background: #FFF; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.matrix-card.gold-border { border-color: var(--gold-primary); background: rgba(197, 160, 89, 0.03); }
.matrix-card h4 { font-family: var(--font-serif); font-size: 1.2rem; color: #111; margin-bottom: 15px; border-bottom: 1px dashed #CCC; padding-bottom: 10px; }
.matrix-card p { font-size: 0.85rem; color: #555; margin-bottom: 8px; line-height: 1.5; }
.matrix-card strong { color: #111; }

/* 10 Methodologies (List elegan) */
.method-list { display: flex; flex-direction: column; gap: 30px; max-width: 800px; margin: 0 auto; }
.method-item { display: flex; gap: 30px; align-items: flex-start; padding-bottom: 30px; border-bottom: 1px solid #E5E7EB; }
.method-item:last-child { border-bottom: none; }
.method-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; color: rgba(197, 160, 89, 0.3); line-height: 1; }
.method-content h3 { font-size: 1.2rem; color: #111; margin-bottom: 10px; font-weight: 600; }
.method-content p { font-size: 0.95rem; color: #666; line-height: 1.6; }

/* Client Journey Timeline */
.journey-timeline { display: flex; flex-direction: column; gap: 20px; max-width: 600px; margin: 0 auto; }
.j-step { display: flex; align-items: center; gap: 25px; background: #FFF; border: 1px solid #E5E7EB; padding: 25px; border-radius: 12px; transition: 0.3s; }
.j-step:hover { border-color: var(--gold-primary); box-shadow: 0 10px 20px rgba(197, 160, 89, 0.1); }
.j-mark { width: 50px; height: 50px; flex-shrink: 0; background: var(--bg-soft); color: var(--gold-primary); font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(197, 160, 89, 0.4); }
.j-info h4 { font-size: 1.1rem; color: #111; margin-bottom: 5px; }
.j-info p { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }

/* Ultimate Form (Multi-Step) */
.form-wrapper { background: #FFFFFF; border-radius: 24px; padding: 50px; border: 1px solid #E5E7EB; box-shadow: 0 20px 50px rgba(0,0,0,0.05); }
.form-header { text-align: center; margin-bottom: 40px; }
.form-header h2 { font-family: var(--font-serif); font-size: 2rem; color: #111; margin-bottom: 10px; }
.form-header p { color: #666; font-size: 0.9rem; }

.step-indicator { display: flex; align-items: center; justify-content: center; margin-bottom: 40px; }
.step-dot { width: 35px; height: 35px; border-radius: 50%; background: #F8F9FA; border: 2px solid #E5E7EB; display: flex; align-items: center; justify-content: center; font-weight: 600; color: #999; font-size: 0.9rem; transition: 0.3s; }
.step-dot.active { background: var(--gold-primary); border-color: var(--gold-primary); color: #FFF; }
.step-line { width: 40px; height: 2px; background: #E5E7EB; transition: 0.3s; }
.step-dot.active + .step-line { background: var(--gold-primary); }

.form-step { display: none; animation: fadeIn 0.4s ease; }
.form-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.form-step h3 { font-size: 1.2rem; color: #111; margin-bottom: 20px; border-bottom: 1px dashed #E5E7EB; padding-bottom: 10px; }
.form-help { font-size: 0.85rem; color: #888; margin-bottom: 20px; font-style: italic; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: #111; margin-bottom: 8px; }
.nls-multi-step input[type="text"], .nls-multi-step input[type="email"], .nls-multi-step input[type="tel"], .nls-multi-step input[type="date"], .nls-multi-step input[type="time"], .nls-multi-step select, .nls-multi-step textarea { width: 100%; padding: 14px; border: 1px solid #E5E7EB; border-radius: 8px; font-family: var(--font-sans); font-size: 0.95rem; background: #FAFAFA; transition: 0.3s; }
.nls-multi-step input:focus, .nls-multi-step select:focus, .nls-multi-step textarea:focus { outline: none; border-color: #111; background: #FFF; box-shadow: 0 0 0 3px rgba(0,0,0,0.05); }

/* Custom Radio Cards */
.radio-cards { display: flex; flex-direction: column; gap: 12px; }
.rc-item { display: flex; align-items: center; padding: 15px; border: 1px solid #E5E7EB; border-radius: 8px; cursor: pointer; transition: 0.3s; font-size: 0.9rem; color: #555; background: #FAFAFA; }
.rc-item input[type="radio"] { margin-right: 12px; accent-color: var(--gold-primary); }
.rc-item:has(input:checked) { border-color: var(--gold-primary); background: rgba(197, 160, 89, 0.05); color: #111; font-weight: 600; }

.checkbox-group { display: flex; align-items: flex-start; gap: 12px; }
.checkbox-group input { margin-top: 4px; accent-color: var(--gold-primary); }
.checkbox-group label { font-size: 0.85rem; color: #555; font-weight: 400; line-height: 1.5; }

.final-checkout-box { background: #111; color: #FFF; padding: 25px; border-radius: 12px; text-align: center; }
.price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; font-size: 1.1rem; }
.price-row strong { font-size: 1.5rem; }

.form-actions { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #E5E7EB; padding-top: 20px; }

/* Buttons */
.btn-pill-primary { background: #111; color: #FFF; padding: 14px 28px; border-radius: 50px; font-weight: 600; border: none; cursor: pointer; transition: 0.3s; font-size: 0.95rem; }
.btn-pill-primary:hover { background: var(--gold-primary); box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2); }
.btn-outline-secondary { background: transparent; color: #111; border: 1px solid #E5E7EB; padding: 14px 28px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.btn-outline-secondary:hover { border-color: #111; }
.btn-pay-action { width: 100%; background: var(--gold-primary); color: #111; padding: 16px; border: none; border-radius: 8px; font-weight: 700; font-size: 1rem; text-transform: uppercase; cursor: pointer; transition: 0.3s; }
.btn-pay-action:hover { background: #dcb36a; transform: translateY(-2px); }

/* Animation Utils */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.mt-15 { margin-top: 15px; } .mt-30 { margin-top: 30px; }

/* Responsif */
@media (max-width: 768px) {
    .bp-title { font-size: 2.8rem; }
    .form-wrapper { padding: 30px 20px; }
    .step-indicator { display: none; /* Sembunyikan indikator panjang di HP, hemat ruang */ }
}

/* =========================================
   DARK MODE VARIABLES (GLOBAL OVERRIDE)
   ========================================= */
html.dark {
    --bg-main: #0A0A0E;
    --bg-soft: #111115;
    --text-dark: #FFFFFF;
    --text-muted: #A0A0A0;
    --border-light: rgba(197, 160, 89, 0.2);
}
body { transition: background-color 0.4s ease, color 0.4s ease; background: var(--bg-main); color: var(--text-dark);}

/* =========================================
   NAVBAR (KONSISTENSI DENGAN HOMEPAGE)
   ========================================= */
.navbar { 
    position: fixed; top: 0; left: 0; width: 100%; padding: 20px 5%; 
    display: flex; justify-content: space-between; align-items: center; 
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid transparent; z-index: 9999; transition: all 0.4s ease;
}
.navbar.scrolled { 
    background: rgba(255, 255, 255, 0.98); 
    border-bottom: 1px solid rgba(197, 160, 89, 0.15); 
    padding: 15px 5%; 
}
html.dark .navbar { background: rgba(10, 10, 14, 0.8); }
html.dark .navbar.scrolled { background: rgba(10, 10, 14, 0.98); }

.logo { font-family: var(--font-serif); font-size: 1.6rem; letter-spacing: 2px; font-weight: 700; color: var(--gold-primary); z-index: 10001; }
.nav-links { display: flex; gap: 40px; list-style: none; margin: 0; padding: 0; position: absolute; left: 50%; transform: translateX(-50%);}
.nav-links a { text-decoration: none; color: var(--text-dark); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover { color: var(--gold-primary); }

.nav-right { display: flex; align-items: center; gap: 20px; z-index: 10001; }
.nav-cart-icon { position: relative; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(197, 160, 89, 0.1); color: var(--text-dark); transition: 0.3s; }
.nav-cart-icon:hover { background: var(--gold-primary); color: #FFF; }
.cart-badge { position: absolute; top: -2px; right: -2px; background: var(--gold-primary); color: #FFF; font-size: 0.65rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid #FFF; }
html.dark .cart-badge { border-color: #0A0A0E; color: #000; }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.mobile-menu-btn span { width: 25px; height: 2px; background: var(--text-dark); transition: 0.3s; }

/* Menimpa Navbar Bawaan Blueprint Sebelumnya */
.nls-navbar { display: none; } /* Matikan navbar yang lama */

/* =========================================
   FOOTER & LEGAL (KONSISTENSI)
   ========================================= */
.nls-complex-footer { border-top: 1px solid var(--border-light); background: var(--bg-main); color: var(--text-dark); }
.footer-container-fluid { width: 100%; padding: 80px 5% 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 60px; }
.footer-heading-serif { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 600; margin-bottom: 15px; color: var(--text-dark); letter-spacing: -0.5px; }
.footer-text { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 25px; line-height: 1.6; max-width: 90%; }
.newsletter-form { position: relative; max-width: 100%; }
.newsletter-input { width: 100%; height: 50px; border-radius: 50px; border: 1px solid var(--border-light); background: transparent; padding: 10px 60px 10px 20px; font-size: 0.9rem; color: var(--text-dark); transition: 0.3s; }
.newsletter-input:focus { outline: none; border-color: var(--gold-primary); }
.newsletter-btn { position: absolute; right: 5px; top: 5px; width: 40px; height: 40px; border-radius: 50%; background: var(--text-dark); color: var(--bg-main); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; }
.newsletter-btn:hover { background: var(--gold-primary); color: #FFF; transform: scale(1.05); }

.footer-heading { font-size: 1.1rem; font-weight: 600; margin-bottom: 25px; color: var(--text-dark); }
.footer-nav { display: flex; flex-direction: column; gap: 15px; }
.footer-nav a, .footer-address p { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; transition: color 0.3s; line-height: 1.5; }
.footer-nav a:hover { color: var(--gold-primary); }

.social-links { display: flex; gap: 12px; margin-bottom: 30px; }
.social-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-light); color: var(--text-muted); transition: 0.3s; text-decoration: none;}
.social-btn:hover { background: var(--gold-primary); color: #FFF; border-color: var(--gold-primary); transform: translateY(-3px); }

.theme-toggle-wrapper { display: flex; align-items: center; gap: 15px; }
.theme-icon { color: var(--text-muted); }
.theme-switch { position: relative; display: inline-block; width: 48px; height: 26px; }
.theme-switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(197, 160, 89, 0.2); transition: .4s; border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 4px; bottom: 4px; background-color: var(--gold-primary); transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: #111; }
html.dark input:checked + .slider { background-color: var(--gold-primary); }
html.dark input:checked + .slider:before { background-color: #111; }
input:checked + .slider:before { transform: translateX(22px); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-light); padding-top: 30px; }
.copyright { color: var(--text-muted); font-size: 0.9rem; }
.legal-nav { display: flex; gap: 30px; }
.legal-link { color: var(--text-muted); font-size: 0.9rem; text-decoration: none; transition: 0.3s; cursor: pointer;}
.legal-link:hover { color: var(--gold-primary); }
#legalModal.active { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }

/* =========================================
   SIDE CART OVERLAY
   ========================================= */
.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 10000; backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: 0.3s ease-in-out; }
.cart-overlay.active { opacity: 1; visibility: visible; }
.side-cart { position: fixed; top: 0; right: -450px; width: 100%; max-width: 400px; height: 100vh; background: var(--bg-main); z-index: 10001; box-shadow: -10px 0 40px rgba(0,0,0,0.15); display: flex; flex-direction: column; transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
html.dark .side-cart { box-shadow: -10px 0 40px rgba(0,0,0,0.8); }
.side-cart.active { right: 0; }
.side-cart-header { padding: 25px 30px; border-bottom: 1px solid var(--border-light); display: flex; justify-content: space-between; align-items: center; }
.side-cart-header h3 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--text-dark); margin: 0; }
.side-cart-items { padding: 25px 30px; flex-grow: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 20px; }
.side-cart-item { display: flex; gap: 15px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.side-cart-img { width: 70px; height: 95px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border-light); }
.side-cart-info { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
.side-cart-title { font-family: var(--font-sans); font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.side-cart-price { font-size: 0.9rem; font-weight: 600; color: var(--gold-primary); margin-bottom: 10px; }
.btn-remove-item { background: transparent; border: none; color: #d9534f; font-size: 0.8rem; font-weight: 600; text-align: left; padding: 0; cursor: pointer; }
.side-cart-footer { padding: 30px; background: var(--bg-soft); border-top: 1px solid var(--border-light); }

/* Responsif Mobile Menu */
@media (max-width: 992px) { 
    .nav-links { display: none; } .mobile-menu-btn { display: flex; } 
    .footer-grid { grid-template-columns: 1fr 1fr; } 
}
@media (max-width: 600px) { 
    .footer-grid { grid-template-columns: 1fr; gap: 30px; } 
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; } 
    .legal-nav { gap: 15px; flex-wrap: wrap; justify-content: center; } 
}