/* about-style.css */

: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;
}

/* --- Global Reset --- */
* { 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(--white); overflow-x: hidden; }

/* --- Navigation & Header Styling --- */
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: 45px; }

/* Dorong nav ke pojok kanan */
header nav { margin-left: auto; } 

.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; /* Ditebelin biar mantap */
    padding: 10px 18px; 
    border-radius: 30px; 
    font-size: 1.05rem; /* Ukuran gede sesuai request */
    transition: 0.3s; 
}

.nav-list a.active, .nav-list a:hover { 
    color: var(--teal-bright); 
    background: rgba(26, 159, 159, 0.08); 
}

/* Dropdown Menu Styling */
.nav-dropdown { position: relative; }
.dropdown-menu-custom {
    position: absolute; 
    top: 100%; 
    right: 0; /* Biar dropdown munculnya nggak keluar layar ke kanan */
    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; 
    animation: fadeInNav 0.3s ease; 
}

@keyframes fadeInNav {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Section Utils --- */
.section-padding { padding: 80px 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; }

/* --- Typographic Intro (NO HERO) --- */
.intro-wrap { background: var(--white); padding-top: 120px !important; }
.display-title { font-size: 6rem; font-weight: 800; line-height: 0.9; color: var(--bg-dark); letter-spacing: -4px; margin-top: 10px; }
.display-title span { color: var(--accent-gold); }
.subheadline-v2 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; display: block; }
.intro-description { padding-left: 20px; border-left: 1px solid #eee; }
.affiliate-tag { background: #f0f7f7; display: inline-block; padding: 8px 15px; border-radius: 5px; font-size: 0.9rem; color: var(--teal-dark); }

/* --- Cards & Lists --- */
.focus-card-v3 { background: var(--white); padding: 40px; border-radius: 20px; border: 1px solid #eee; height: 100%; transition: 0.3s; }
.focus-card-v3:hover { border-color: var(--teal-bright); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.focus-list, .positioning-list { list-style: none; padding: 0; }
.focus-list li, .positioning-list li { padding: 12px 0; border-bottom: 1px solid #f5f5f5; font-weight: 600; color: var(--navy-light); display: flex; align-items: center; gap: 12px; }
.focus-list li i, .positioning-list li i { color: var(--accent-gold); font-size: 1.1rem; }

/* --- Values --- */
.value-box { background: var(--bg-dark); color: var(--white); padding: 45px 25px; border-radius: 20px; height: 100%; transition: 0.3s; border-bottom: 4px solid var(--accent-gold); }
.value-box:hover { transform: translateY(-10px); background: var(--navy-light); }
.value-box i { font-size: 2.5rem; color: var(--accent-gold); margin-bottom: 25px; display: block; }

/* --- Industry Card --- */
.industry-card { background: rgba(255, 215, 0, 0.05); padding: 30px; border-radius: 15px; border: 1px solid rgba(255, 215, 0, 0.15); transition: 0.3s; }
.industry-card:hover { background: var(--accent-gold); color: var(--bg-dark) !important; transform: scale(1.05); }

/* --- Team Box --- */
.team-text-box { background: var(--bg-light); padding: 60px; border-radius: 30px; border-left: 10px solid var(--teal-bright); }

/* --- Footer Socials --- */
.social-links-v2 { display: flex; gap: 15px; }
.social-links-v2 a { width: 45px; height: 45px; background: #f0f0f0; color: var(--navy-light); display: flex; align-items: center; justify-content: center; border-radius: 50%; text-decoration: none; transition: 0.3s; }
.social-links-v2 a:hover { background: var(--teal-bright); color: white; transform: translateY(-5px); }
.affiliate-logo-footer { height: 60px; background: #fff; padding: 8px; border-radius: 8px; border: 1px solid #eee; }

/* --- REVISI RESPONSIVE (Taruh di paling bawah CSS lo) --- */
@media (max-width: 992px) {
    /* Header & Nav */
    .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; }
    
    /* Hero/Intro Text Fix */
    .display-title { font-size: 3.5rem !important; letter-spacing: -1px; }
    .fs-hero-desc { font-size: 1rem !important; line-height: 1.6; }
    
    /* Footer Fix */
    footer .row { text-align: center; gap: 30px; }
    .social-links-v2 { justify-content: center; }
}
