.navbar-solid { background: #ffffff; border-bottom: 1px solid rgba(0,0,0,0.05); padding: 1rem 0; transition: 0.3s; }
.navbar-solid.scrolled { padding: 0.5rem 0; box-shadow: var(--shadow-soft); }
.brand-icon { width: 40px; height: 40px; background: var(--bg-dark); color: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.nav-link-dark { color: var(--text-main) !important; font-weight: 500; position: relative; }
.nav-link-dark.active::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px; background: var(--primary); border-radius: 2px; }
.nav-link-dark:hover { color: var(--primary) !important; }

.btn-premium { border-radius: 14px; padding: 0.8rem 2rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; border: none; transition: 0.3s ease; }
.btn-primary-gradient { color: white !important; }
.btn-primary-gradient:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.btn-glass-icon { width: 45px; height: 45px; border-radius: 12px; background: rgba(255,255,255,0.1); color: white; display: inline-flex; align-items: center; justify-content: center; backdrop-filter: blur(5px); transition: 0.3s; }
.btn-glass-icon:hover { background: var(--accent); color: var(--bg-dark); transform: translateY(-3px); }

.bento-card { background: white; border-radius: var(--radius-md); padding: 2.5rem; border: 1px solid rgba(0,0,0,0.03); box-shadow: var(--shadow-soft); transition: 0.4s; position: relative; overflow: hidden; height: 100%; }
.bento-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-glow); }
.icon-shape { width: 60px; height: 60px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 1.5rem; }

.hero-wrapper { position: relative; padding: 180px 0 100px; overflow: hidden; }
.hero-blob { position: absolute; width: 800px; height: 800px; background: var(--secondary); filter: blur(120px); opacity: 0.1; top: -20%; right: -10%; border-radius: 50%; z-index: 0; pointer-events: none; }
.hero-img-stack { position: relative; z-index: 2; }
.hero-img-main { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-soft); }
.floating-badge { position: absolute; bottom: 40px; left: -40px; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); padding: 1.2rem; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.12); display: flex; align-items: center; gap: 1rem; border: 1px solid rgba(255,255,255,0.5); z-index: 3; }

.footer-premium { background: var(--bg-dark); margin-top: 150px; }
.footer-wave { position: absolute; top: -119px; left: 0; width: 100%; overflow: hidden; line-height: 0; }
.footer-wave svg { display: block; width: calc(100% + 1.3px); height: 120px; }
.footer-wave .shape-fill { fill: var(--bg-dark); }
.footer-cta-wrapper { margin-top: -100px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li a { color: rgba(255,255,255,0.6); text-decoration: none; display: block; margin-bottom: 0.8rem; transition: 0.3s; }
.footer-links li a:hover { color: var(--accent); transform: translateX(5px); }
.bg-pattern-dots { background-image: radial-gradient(var(--text-muted) 1px, transparent 1px); background-size: 24px 24px; opacity: 0.1; position: absolute; inset: 0; z-index: 0; }

/* Navigasi Desktop Modern */
.nav-link-premium {
    color: var(--text-main) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    position: relative;
    transition: 0.3s;
}
.nav-link-premium::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.nav-link-premium:hover::after,
.nav-link-premium.active::after {
    transform: scaleX(1);
}
.nav-link-premium.active {
    color: var(--primary) !important;
    background: rgba(11, 60, 109, 0.05);
}

/* Custom Hamburger */
.navbar-toggler-icon-custom {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.navbar-toggler-icon-custom span {
    display: block;
    height: 2px;
    background: var(--bg-dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* Offcanvas Modern */
.premium-offcanvas {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0a0f1a 100%);
    border-left: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: 0.3s;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.03);
}
.mobile-nav-link i {
    font-size: 1.4rem;
    color: var(--accent);
    transition: 0.3s;
}
.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: rgba(255,255,255,0.08);
    color: white;
    transform: translateX(5px);
}
