/* training-style.css */

:root {
    --bg-dark: #0A192F; 
    --navy-light: #112240;
    --teal: #1A9F9F;
    --teal-bright: #1A9F9F; /* Cyan Color */
    --accent-gold: #FFD700;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --text-dark: #1D2B2B;
}

body { font-family: 'Inter', sans-serif; color: var(--text-dark); line-height: 1.7; overflow-x: hidden; }

/* --- Navigation & Header --- */
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; }

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; 
    padding: 10px 18px; 
    border-radius: 30px; 
    font-size: 1.05rem; 
    transition: 0.3s; 
}

/* REVISI: SETELAH DIPENCET TULISANNYA TEAL, GAK ITEM */
.nav-list a.active { 
    color: var(--teal-bright) !important; 
    background: rgba(26, 159, 159, 0.15) !important; 
}

.nav-list a:hover { 
    color: var(--teal-bright); 
    background: rgba(26, 159, 159, 0.1); 
}

/* Dropdown Menu Styling */
.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; animation: fadeInNav 0.3s ease; }

@keyframes fadeInNav {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Hero --- */
.training-hero {
    background: linear-gradient(rgba(10, 25, 47, 0.85)), url('foto/42.jpg') center/cover no-repeat;
    padding: 120px 0;
}
.subheadline-v2 { font-size: 1rem; color: var(--teal); text-transform: uppercase; font-weight: 700; letter-spacing: 2px; display: block; }
.training-hero h1 { font-weight: 800; color: white; line-height: 1.1; }
.training-hero h1 span { color: var(--accent-gold); }
.description-v2 { color: rgba(255,255,255,0.8); max-width: 750px; }

/* --- Global Utils --- */
.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(--teal); margin: 15px auto 30px; }
.accent-line-left { width: 50px; height: 4px; background: var(--teal); margin: 15px 0 25px; }

/* --- Program Cards --- */
.program-card { background: white; border-radius: 20px; border: 1px solid #eee; overflow: hidden; height: 100%; transition: 0.3s; }
.program-card:hover { transform: translateY(-5px); border-color: var(--teal); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.program-header { background: rgba(26, 159, 159, 0.05); padding: 30px; border-bottom: 1px solid #eee; }
.program-header i { font-size: 2.5rem; color: var(--teal); margin-bottom: 15px; display: block; }
.program-header h4 { font-weight: 700; margin-bottom: 0; color: var(--navy-light); }
.program-body { padding: 30px; }
.outcome-box { background: var(--bg-light); padding: 20px; border-radius: 12px; margin-top: 20px; border-left: 4px solid var(--accent-gold); }
.outcome-box h6 { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; color: var(--navy-light); margin-bottom: 10px; }
.outcome-box ul { list-style: none; padding: 0; margin: 0; }
.outcome-box li { font-size: 0.9rem; position: relative; padding-left: 20px; margin-bottom: 5px; }
.outcome-box li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: bold; }

.highlight-card .program-header { background: var(--navy-light); }
.highlight-card .program-header h4, .highlight-card .program-header i { color: white; }

/* --- Download Section --- */
.download-box { background: white; padding: 35px; border-radius: 20px; border-bottom: 4px solid var(--teal); }
.btn-download { background: var(--bg-dark); color: white; padding: 12px 25px; border-radius: 10px; text-decoration: none; font-weight: 700; transition: 0.3s; display: inline-block; }
.btn-download:hover { background: var(--teal); color: white; transform: scale(1.05); }

/* --- Delivery & Difference --- */
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.delivery-item { background: var(--bg-light); padding: 20px; border-radius: 10px; font-weight: 600; color: var(--navy-light); }

.diff-card { text-align: center; border: 1px solid rgba(255,255,255,0.1); padding: 30px; border-radius: 20px; height: 100%; transition: 0.3s; }
.diff-card:hover { background: rgba(255,255,255,0.05); border-color: var(--teal); }
.diff-card i { font-size: 2.2rem; color: var(--teal); margin-bottom: 20px; display: block; }
.diff-card p { font-size: 0.9rem; font-weight: 600; margin-bottom: 0; }

/* --- Buttons & CTA --- */
.cta-sub { background: var(--bg-dark); padding: 100px 0; }
.btn-gold { background: var(--accent-gold); color: var(--bg-dark); font-weight: 700; padding: 14px 35px; border-radius: 50px; text-decoration: none; display: inline-block; transition: 0.3s; }
.btn-gold:hover { background: #FFC800; transform: translateY(-3px); }
.btn-outline-white { border: 2px solid white; color: white; font-weight: 600; padding: 14px 35px; border-radius: 50px; text-decoration: none; display: inline-block; transition: 0.3s; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-view-service { text-decoration: none; color: var(--teal); font-weight: 700; font-size: 0.85rem; transition: 0.3s; }

/* --- Footer --- */
.social-links-v2 { display: flex; gap: 15px; }
.social-links-v2 a { width: 40px; height: 40px; background: #eee; color: var(--bg-dark); display: flex; align-items: center; justify-content: center; border-radius: 50%; text-decoration: none; }

/* ============================================================ */
/* REVISI: MASTER FONT SIZING (MART: ATUR DI SINI)             */
/* ============================================================ */
.fs-hero-title { font-size: 4rem; }
.fs-hero-sub { font-size: 1.1rem; }
.fs-hero-desc { font-size: 1.15rem; }

.fs-section-title { font-size: 2.2rem; }
.fs-section-desc { font-size: 1.1rem; }

.fs-card-title { font-size: 1.35rem; font-weight: 700; }
.fs-card-desc { font-size: 1rem; }
/* ============================================================ */

/* --- 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; }
}

/* Biar dropdown menu gak off-screen di mobile */
@media (max-width: 992px) {
    .dropdown-menu-custom { position: relative; width: 100%; box-shadow: none; border: none; }
}