/* ========================================
   TRAINING PAGE
   ======================================== */

/* HERO */
.hero-full {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    padding: 80px 0 50px;
    background: url('images/about/sunset_at_rig.png') center center / cover no-repeat;
    overflow: hidden;
}

.hero-full .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.40);
    z-index: 1;
}

.hero-full .hero-slant {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 65%;
    background: rgba(0, 0, 0, 0.82);
    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: 100px;
    background: #00a3ff;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 8px;
}

.hero-full .hero-text {
    text-align: left;
    flex: 1;
}

.hero-full h1 {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-full .hero-sub {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #66ccff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* ========================================
   TRAINING CONTENT
   ======================================== */
.training-content {
    padding: 60px 0 80px;
    background: #f9fafc;
}

.training-card {
    background: white;
    border-radius: 16px;
    padding: 40px 45px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-left: 6px solid #00a3ff;
    transition: 0.3s;
}

.training-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}

.training-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0a2a43;
    margin-bottom: 12px;
    border-bottom: 3px solid #00a3ff;
    padding-bottom: 12px;
    display: inline-block;
}

.training-desc {
    color: #2d3748;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.training-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.training-details span {
    background: #e8f0fe;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0a2a43;
}

.training-details span i {
    color: #00a3ff;
    margin-right: 6px;
}

.syllabus {
    background: #f7fafc;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.syllabus h4 {
    color: #0a2a43;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.syllabus h4 i {
    color: #00a3ff;
    margin-right: 8px;
}

.syllabus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.syllabus-grid h5 {
    color: #0a2a43;
    font-size: 1rem;
    margin-bottom: 8px;
    border-bottom: 2px solid #00a3ff;
    padding-bottom: 4px;
    display: inline-block;
}

.syllabus ul li {
    padding: 4px 0;
    font-size: 0.95rem;
    color: #2d3748;
    border-bottom: 1px dashed #eef2f7;
}

.syllabus ul li::before {
    content: "▸ ";
    color: #00a3ff;
    font-weight: bold;
}

.compEx,
.bonus {
    margin-top: 12px;
    padding: 10px 16px;
    background: #e0f0ff;
    border-radius: 8px;
    font-weight: 600;
    color: #0a2a43;
}

.training-card .btn-secondary {
    display: inline-block;
    background: #00a3ff;
    color: white;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.training-card .btn-secondary:hover {
    background: #0077cc;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,163,255,0.3);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .hero-full {
        min-height: 40vh;
        padding: 60px 0 30px;
    }
    .hero-full h1 {
        font-size: 2.5rem;
    }
    .hero-full .hero-sub {
        font-size: 1.5rem;
    }
    .hero-full .hero-content-center {
        padding: 0 20px;
    }
    .hero-full .hero-slant {
        width: 80%;
        transform: skewX(-8deg);
    }
    .hero-full .hero-underline {
        min-height: 70px;
    }

    .training-card {
        padding: 25px;
    }

    .training-card h2 {
        font-size: 1.5rem;
    }

    .syllabus-grid {
        grid-template-columns: 1fr;
    }

    .training-details {
        flex-direction: column;
        align-items: flex-start;
    }

    .training-details span {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-full h1 {
        font-size: 1.8rem;
    }
    .hero-full .hero-sub {
        font-size: 1.2rem;
    }

    .training-card {
        padding: 18px;
    }

    .training-card h2 {
        font-size: 1.2rem;
    }

    .syllabus {
        padding: 15px;
    }

    .syllabus ul li {
        font-size: 0.85rem;
    }
}