/* ========================================
   TRAINING PAGE
   ======================================== */

/* HERO */
.hero-full {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    padding: 100px 0 40px;
    background: url('images/about/refinery.png') center center / cover no-repeat;
    overflow: hidden;
}

.hero-full .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.hero-full .hero-slant {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 65%;
    background: rgba(0, 0, 0, 0.60);
    z-index: 2;
    transform: skewX(-12deg);
    transform-origin: top left;
    border-right: 4px solid #00a3ff;
}

.hero-full .hero-content-center {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0;
    padding: 0 20px 0 80px;
    width: 100%;
}

.hero-full .hero-text-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 750px;
    margin: 0;
}

.hero-full .hero-underline {
    width: 6px;
    min-height: 70px;
    background: #00a3ff;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 8px;
}

.hero-full .hero-text {
    text-align: left;
    flex: 1;
}

/* ===== JUDUL UTAMA (PUTIH, BESAR) - SAMA DENGAN ABOUT/CONTACT ===== */
.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 2px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* ===== SUB JUDUL (BIRU, ANTON) - SAMA DENGAN ABOUT/CONTACT ===== */
.hero-sub {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #66ccff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* ========================================
   TRAINING CONTENT
   ======================================== */
.training-content {
    padding: 10px 0 60px;
    background: #f9fafc;
}

.training-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.training-wrapper h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0a2a43;
    margin-bottom: 16px;
    border-bottom: 4px solid #00a3ff;
    padding-bottom: 10px;
    display: inline-block;
}

.training-wrapper .training-desc {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.training-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.training-details span {
    background: #f0f6fe;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #0a2a43;
}

.training-details span i {
    color: #00a3ff;
    margin-right: 6px;
}

/* ========================================
   SYLLABUS
   ======================================== */
.syllabus {
    margin-top: 10px;
}

.syllabus h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a2a43;
    margin-bottom: 16px;
}

/* ===== SYLLABUS 2 KOLOM (Inspector, Commissioning, Technician) ===== */
.syllabus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.syllabus-grid h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0a2a43;
    margin-bottom: 10px;
    border-bottom: 2px solid #00a3ff;
    padding-bottom: 6px;
    display: inline-block;
}

.syllabus-grid ul {
    list-style: none;
    padding: 0;
}

.syllabus-grid ul li {
    padding: 2px 0;
    font-size: 0.9rem;
    color: #4a5568;
    border-bottom: 1px solid #f0f4f9;
    line-height: 1.4;
}

.syllabus-grid ul li:last-child {
    border-bottom: none;
}

.syllabus-grid ul li::before {
    content: ">";
    color: #00a3ff;
    font-weight: 700;
    margin-right: 8px;
}

/* ===== SYLLABUS 1 KOLOM (PLC, Drafter, Tekla) ===== */
.syllabus ul {
    list-style: none;
    padding: 0;
}

.syllabus ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 2px 0;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.4;
    border-bottom: 1px solid #f0f4f9;
}

.syllabus ul li:last-child {
    border-bottom: none;
}

.syllabus ul li::before {
    content: ">";
    color: #00a3ff;
    font-weight: 700;
    flex-shrink: 0;
}

.syllabus ul li .syllabus-label {
    font-weight: 700;
    color: #0a2a43;
    flex-shrink: 0;
}

.syllabus ul li .syllabus-desc {
    color: #4a5568;
}

/* ===== BONUS / CompEx ===== */
.syllabus .compEx,
.syllabus .bonus {
    margin-top: 16px;
    padding: 10px 16px;
    background: #f0f6fe;
    border-radius: 8px;
    border-left: 4px solid #00a3ff;
    font-size: 0.9rem;
    color: #0a2a43;
}

/* ========================================
   TRAINER SECTION
   ======================================== */
.trainer-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #eef2f7;
}

.trainer-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a2a43;
    margin-bottom: 12px;
}

.trainer-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
}

.trainer-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trainer-item .trainer-name {
    font-weight: 700;
    color: #0a2a43;
    font-size: 0.95rem;
}

.trainer-item .trainer-role {
    color: #4a5568;
    font-size: 0.85rem;
    font-weight: 400;
}

.trainer-item .trainer-role::before {
    content: "—";
    color: #00a3ff;
    margin-right: 6px;
}

/* ========================================
   REGISTER BUTTON
   ======================================== */
.training-wrapper .btn-secondary {
    display: inline-block;
    background: #00a3ff;
    color: white;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
    margin-top: 20px;
}

.training-wrapper .btn-secondary:hover {
    background: #0077cc;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,163,255,0.3);
}

/* ========================================
   RESPONSIVE - SAMA DENGAN ABOUT/CONTACT
   ======================================== */
@media (max-width: 768px) {
    .hero-full {
        min-height: 25vh;
        padding: 50px 0 15px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-sub {
        font-size: 0.8rem;
        margin-top: -4px;
        max-width: 70%;
    }
    .hero-full .hero-content-center {
        padding: 0 16px;
    }
    .hero-full .hero-slant {
        width: 80%;
        transform: skewX(-8deg);
    }
    .hero-full .hero-underline {
        min-height: 50px;
        width: 4px;
    }
    .hero-full .hero-text-wrapper {
        gap: 12px;
    }

    .training-content {
        padding: 10px 0 40px;
    }

    .training-wrapper h2 {
        font-size: 1.5rem;
    }

    .training-details {
        gap: 10px;
    }

    .training-details span {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .syllabus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .syllabus-grid ul li {
        font-size: 0.85rem;
    }

    .syllabus ul li {
        font-size: 0.85rem;
    }

    .trainer-list {
        flex-direction: column;
        gap: 8px;
    }

    .trainer-item {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-full {
        min-height: 22vh;
        padding: 40px 0 12px;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-sub {
        font-size: 0.65rem;
        margin-top: -4px;
        max-width: 70%;
    }
    .hero-full .hero-underline {
        min-height: 35px;
        width: 3px;
    }

    .training-content {
        padding: 10px 0 30px;
    }

    .training-wrapper h2 {
        font-size: 1.2rem;
    }

    .training-wrapper .training-desc {
        font-size: 0.85rem;
    }

    .training-details span {
        font-size: 0.65rem;
        padding: 3px 10px;
    }

    .syllabus-grid ul li {
        font-size: 0.75rem;
    }

    .syllabus ul li {
        font-size: 0.75rem;
        flex-wrap: wrap;
    }

    .syllabus ul li .syllabus-label {
        flex-shrink: 0;
    }

    .syllabus .compEx,
    .syllabus .bonus {
        font-size: 0.75rem;
        padding: 8px 12px;
    }

    .trainer-item .trainer-name {
        font-size: 0.8rem;
    }
    .trainer-item .trainer-role {
        font-size: 0.7rem;
    }

    .training-wrapper .btn-secondary {
        padding: 8px 20px;
        font-size: 0.75rem;
    }
}