:root {
    --bg-dark: #0A192F; 
    --navy-light: #112240;
    --teal-bright: #1A9F9F;
    --teal-dark: #126F6F;
    --accent-gold: #FFD700;
    --text-light: #E6F1FF;
    --text-dark: #1D2B2B;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); line-height: 1.7; background-color: var(--bg-light); overflow-x: hidden; }

header { background: var(--white); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.04); }
.logo img { height: 50px; }

.nav-list { display: flex; list-style: none; gap: 5px; margin: 0; align-items: center; }
.nav-list a { 
    text-decoration: none; 
    color: var(--text-dark); 
    font-weight: 700; 
    padding: 10px 18px; 
    border-radius: 30px; 
    font-size: 1.05rem; 
    transition: 0.3s; 
}
.nav-list a.active, .nav-list a:hover { color: var(--teal-bright); background: rgba(26, 159, 159, 0.08); }

.nav-dropdown { position: relative; }
.dropdown-menu-custom {
    position: absolute; top: 100%; right: 0; 
    background: var(--white); min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 12px; padding: 10px 0;
    display: none; list-style: none; z-index: 1100; margin-top: 5px;
}
.dropdown-menu-custom li a { border-radius: 0; padding: 10px 20px; display: block; font-size: 0.95rem; background: none; }
.nav-dropdown:hover .dropdown-menu-custom { display: block; }

.hero-v2 {
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.95)), 
                url('foto/pict1.jpg') center/cover no-repeat;
    min-height: 90vh; display: flex; align-items: center; color: var(--text-light);
}
.hero-v2 h1 span { color: var(--accent-gold); }

.section-padding { padding: 100px 0; }
.section-title { font-weight: 800; color: var(--navy-light); text-transform: uppercase; letter-spacing: 1px; }
.accent-line-center { width: 60px; height: 4px; background: var(--accent-gold); margin: 15px auto 30px; border-radius: 2px; }
.accent-line-left { width: 50px; height: 4px; background: var(--accent-gold); margin: 15px 0 25px; }

.s-card-v2 { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: 0.4s; height: 100%; border-bottom: 4px solid transparent; }
.s-card-v2:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08); border-bottom-color: var(--accent-gold); }
.icon-box-v2 { width: 60px; height: 60px; background: rgba(26, 159, 159, 0.1); color: var(--teal-dark); display: flex; align-items: center; justify-content: center; border-radius: 12px; margin-bottom: 25px; font-size: 1.8rem; }
.card-list { list-style: none; padding: 0; margin-top: 20px; }
.card-list li i { color: var(--teal-bright); margin-top: 5px; font-size: 0.7rem; }

.feature-box { padding: 30px; border-radius: 15px; transition: 0.3s; border: 1px solid transparent; }
.feature-box:hover { background: #fdfbf3; border-color: var(--accent-gold); }
.feature-box i { font-size: 2rem; color: var(--teal-bright); margin-bottom: 20px; display: block; }

.expertise-pill { background: var(--bg-dark); color: var(--text-light); padding: 30px; border-radius: 15px; height: 100%; border-bottom: 4px solid var(--accent-gold); }
.text-gold { color: var(--accent-gold); font-weight: 700; margin-bottom: 10px; }
.affiliate-box { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); border-radius: 24px; padding: 50px; color: white; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }

.project-card { position: relative; border-radius: 20px; overflow: hidden; height: 380px; cursor: pointer; }
.project-img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 25, 47, 0.95), transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 35px; color: white; }
.project-card:hover .project-img { transform: scale(1.1); }

.cta-final { background: var(--bg-dark); padding: 120px 0; color: white; text-align: center; }
.social-links-v2 { display: flex; justify-content: center; gap: 15px; }
.social-links-v2 a { width: 45px; height: 45px; background: var(--bg-light); color: var(--navy-light); display: flex; align-items: center; justify-content: center; border-radius: 50%; text-decoration: none; transition: 0.3s; border: 1px solid #eee; }
.social-links-v2 a:hover { background: var(--teal-bright); color: white; transform: translateY(-5px); border-color: var(--teal-bright); }

.btn-main-v2 { background: var(--accent-gold); color: var(--bg-dark); font-weight: 700; padding: 15px 40px; border-radius: 50px; border: none; transition: 0.3s; text-decoration: none; display: inline-block; }
.btn-main-v2:hover { background: #FFC800; transform: translateY(-3px); }
.btn-outline-white-v2 { border: 2px solid var(--white); color: var(--white); font-weight: 600; padding: 15px 40px; border-radius: 50px; text-decoration: none; transition: 0.3s; display: inline-block; }

.fs-hero-title { font-size: 5.5rem; font-weight: 800; }
.fs-hero-sub { font-size: 1.15rem; }
.fs-hero-desc { font-size: 1.2rem; }
.fs-section-title { font-size: 2.5rem; }
.fs-section-desc { font-size: 1.15rem; }
.fs-card-title { font-size: 1.4rem; font-weight: 700; }
.fs-card-desc { font-size: 1rem; }

/* --- REVISI RESPONSIVE --- */
@media (max-width: 992px) {
    .navbar-collapse { background: white; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .nav-list { flex-direction: column !important; gap: 15px; }
    
    .fs-hero-title { font-size: 3rem !important; }
    .hero-v2 { text-align: center; padding: 60px 0; }
    .hero-v2 .d-flex { justify-content: center; }

    .footer-v2 .row, .py-5 .row { text-align: center; gap: 20px; }
    .social-links-v2 { justify-content: center; }
}