/* Import Earthy Theme Colors */
@import url("../../../css/earthy-theme.css");

/* =============================================
   MODERN TRAINING PAGE STYLES
   Preserves all color variables from earthy-theme
   ============================================= */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Scroll-triggered animation class */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    position: relative;
    height: 74vh;
    min-height: 470px;
    max-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 14s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.95);
}

.hero-section:hover .hero-background img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.18) 0%,
        rgba(0, 0, 0, 0.3) 42%,
        rgba(0, 0, 0, 0.58) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 640px;
    padding: 0 1.5rem;
    animation: fadeInUp 0.9s ease-out;
}

.hero-title {
    color: #ffffff;
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(0.95rem, 1.5vw, 1.08rem);
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 0.85rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.82rem, 1.35vw, 0.96rem);
    margin-bottom: 1.7rem;
    font-weight: 400;
    line-height: 1.55;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--accent-terracotta);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(176, 78, 18, 0.35);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    background: var(--primary-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(176, 78, 18, 0.45);
    color: #fff;
}

.hero-cta i {
    font-size: 0.92rem;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.01em;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-terracotta), var(--primary-brown));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 1.2rem auto 0;
    line-height: 1.7;
    opacity: 0.85;
}

/* =============================================
   PROGRAMS TABLE
   ============================================= */
.programs-section {
    padding: 5rem 0;
    background: var(--neutral-light);
}

.programs-table-container {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.4s ease;
}

.programs-table-container:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.programs-table {
    width: 100%;
}

.table-header {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-brown) 100%);
    color: #fff;
}

.header-cell {
    padding: 1.4rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.02em;
}

.header-cell:last-child {
    border-right: none;
}

.table-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--neutral-beige);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.table-row:hover {
    background: rgba(1, 105, 5, 0.03);
}

.table-row:last-child {
    border-bottom: none;
}

.program-name {
    padding: 1.4rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--neutral-cream);
    border-right: 1px solid var(--neutral-beige);
    font-weight: 600;
    color: var(--primary-brown);
    font-size: 0.95rem;
}

.program-icon {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--accent-terracotta) 100%);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(160, 78, 27, 0.25);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.table-row:hover .program-icon {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 4px 14px rgba(160, 78, 27, 0.35);
}

.program-cell {
    padding: 1.4rem 1rem;
    border-right: 1px solid var(--neutral-beige);
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.program-cell:last-child {
    border-right: none;
    font-weight: 500;
    color: var(--primary-brown);
}

/* =============================================
   PROGRAM GLANCE TABLE
   ============================================= */
.program-details-section {
    padding: 5rem 0;
    background: var(--white);
}

.program-glance-table {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.4s ease;
}

.program-glance-table:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.glance-table {
    width: 100%;
}

.glance-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-brown) 100%);
    color: #fff;
}

.glance-header-cell {
    padding: 1.4rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.glance-header-cell:last-child {
    border-right: none;
}

.glance-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid var(--neutral-beige);
    transition: all 0.3s ease;
}

.glance-row:hover {
    background: rgba(1, 105, 5, 0.03);
}

.glance-row:last-child {
    border-bottom: none;
}

.glance-item {
    padding: 1.4rem 1.2rem;
    background: var(--neutral-cream);
    border-right: 1px solid var(--neutral-beige);
    font-weight: 600;
    color: var(--primary-brown);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.glance-detail {
    padding: 1.4rem 1.2rem;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* =============================================
   CURRICULUM SECTION
   ============================================= */
.curriculum-section {
    padding: 5rem 0;
    background: var(--neutral-cream);
}

.curriculum-table-container {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.4s ease;
}

.curriculum-table-container:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.curriculum-table {
    width: 100%;
}

.curriculum-header {
    display: grid;
    grid-template-columns: 250px 120px 1fr 200px;
    background: linear-gradient(135deg, var(--accent-terracotta) 0%, var(--primary-brown) 100%);
    color: #fff;
}

.curriculum-header-cell {
    padding: 1.4rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.curriculum-header-cell:last-child {
    border-right: none;
}

.curriculum-row {
    display: grid;
    grid-template-columns: 250px 120px 1fr 200px;
    border-bottom: 1px solid var(--neutral-beige);
    transition: all 0.3s ease;
}

.curriculum-row:hover {
    background: rgba(176, 78, 18, 0.03);
}

.curriculum-row:last-child {
    border-bottom: none;
}

.module-name {
    padding: 1.4rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--neutral-cream);
    border-right: 1px solid var(--neutral-beige);
    font-weight: 600;
    color: var(--primary-brown);
    font-size: 0.95rem;
}

.module-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-sage) 100%);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(1, 105, 5, 0.2);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.curriculum-row:hover .module-icon {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 4px 14px rgba(1, 105, 5, 0.3);
}

.curriculum-cell {
    padding: 1.4rem 1rem;
    border-right: 1px solid var(--neutral-beige);
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.curriculum-cell:last-child {
    border-right: none;
    font-weight: 500;
    color: var(--primary-brown);
}

.table-note {
    padding: 1rem 1.5rem;
    font-size: 0.88rem;
    color: var(--text-medium);
    font-style: italic;
    text-align: center;
    background: var(--neutral-light);
    margin: 0;
    opacity: 0.8;
}

/* =============================================
   TIMETABLE SECTION
   ============================================= */
.timetable-section {
    padding: 5rem 0;
    background: var(--white);
}

.timetable-container {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.4s ease;
}

.timetable-container:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.timetable-table {
    width: 100%;
}

.timetable-header {
    display: grid;
    grid-template-columns: 150px 1fr 1fr;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--accent-terracotta) 100%);
    color: #fff;
}

.timetable-header-cell {
    padding: 1.4rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.timetable-header-cell:last-child {
    border-right: none;
}

.timetable-row {
    display: grid;
    grid-template-columns: 150px 1fr 1fr;
    border-bottom: 1px solid var(--neutral-beige);
    transition: all 0.3s ease;
}

.timetable-row:hover {
    background: rgba(160, 78, 27, 0.03);
}

.timetable-row:last-child {
    border-bottom: none;
}

.time-slot {
    padding: 1.4rem 1rem;
    background: var(--neutral-cream);
    border-right: 1px solid var(--neutral-beige);
    font-weight: 600;
    color: var(--primary-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
}

.activity-cell {
    padding: 1.4rem 1rem;
    border-right: 1px solid var(--neutral-beige);
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-medium);
    display: flex;
    align-items: center;
}

.activity-cell:last-child {
    border-right: none;
}

/* =============================================
   LEARNING ROADMAP SECTION
   ============================================= */
.roadmap-section {
    padding: 5rem 0;
    background: var(--neutral-light);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.roadmap-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-sage));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.roadmap-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(1, 105, 5, 0.15);
}

.roadmap-item:hover::before {
    opacity: 1;
}

.weekend-number {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-sage) 100%);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(1, 105, 5, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-item:hover .weekend-number {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(1, 105, 5, 0.35);
}

.roadmap-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 0.4rem;
}

.roadmap-item p {
    font-size: 0.92rem;
    color: var(--text-medium);
    line-height: 1.5;
    opacity: 0.85;
}

/* =============================================
   MENTORSHIP SECTION
   ============================================= */
.mentorship-section {
    padding: 5rem 0;
    background: var(--neutral-cream);
}

.mentorship-table-container {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.4s ease;
}

.mentorship-table-container:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.mentorship-table {
    width: 100%;
}

.mentorship-header {
    display: grid;
    grid-template-columns: 180px 200px 100px 1fr 200px 180px;
    background: linear-gradient(135deg, var(--accent-terracotta) 0%, var(--primary-brown) 100%);
    color: #fff;
}

.mentorship-header-cell {
    padding: 1.4rem 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.mentorship-header-cell:last-child {
    border-right: none;
}

.mentorship-row {
    display: grid;
    grid-template-columns: 180px 200px 100px 1fr 200px 180px;
    border-bottom: 1px solid var(--neutral-beige);
    transition: all 0.3s ease;
}

.mentorship-row:hover {
    background: rgba(176, 78, 18, 0.03);
}

.mentorship-row:last-child {
    border-bottom: none;
}

.track-name {
    padding: 1.4rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--neutral-cream);
    border-right: 1px solid var(--neutral-beige);
    font-weight: 600;
    color: var(--primary-brown);
    font-size: 0.92rem;
}

.track-icon {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--accent-terracotta) 100%);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(160, 78, 27, 0.2);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mentorship-row:hover .track-icon {
    transform: scale(1.1) rotate(-3deg);
}

.mentorship-cell {
    padding: 1.4rem 0.8rem;
    border-right: 1px solid var(--neutral-beige);
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-medium);
}

.mentorship-cell:last-child {
    border-right: none;
}

/* =============================================
   ASSESSMENT SECTION
   ============================================= */
.assessment-section {
    padding: 5rem 0;
    background: var(--white);
}

.assessment-table-container {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.4s ease;
}

.assessment-table-container:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.assessment-table {
    width: 100%;
}

.assessment-header {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-brown) 100%);
    color: #fff;
}

.assessment-header-cell {
    padding: 1.4rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.assessment-header-cell:last-child {
    border-right: none;
}

.assessment-row {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    border-bottom: 1px solid var(--neutral-beige);
    transition: all 0.3s ease;
}

.assessment-row:hover {
    background: rgba(1, 105, 5, 0.03);
}

.assessment-row:last-child {
    border-bottom: none;
}

.assessment-component {
    padding: 1.4rem 1rem;
    border-right: 1px solid var(--neutral-beige);
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
}

.assessment-weight {
    padding: 1.4rem 1rem;
    border-right: 1px solid var(--neutral-beige);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-brown);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assessment-standard {
    padding: 1.4rem 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
}

/* =============================================
   OUTCOMES SECTION
   ============================================= */
.outcomes-section {
    padding: 5rem 0;
    background: var(--neutral-light);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.outcomes-card {
    background: var(--white);
    padding: 2.2rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.outcomes-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-green), var(--accent-terracotta));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.outcomes-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(176, 78, 18, 0.15);
}

.outcomes-card:hover::before {
    opacity: 1;
}

.outcomes-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--neutral-beige);
}

.outcomes-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-sage) 100%);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 14px rgba(1, 105, 5, 0.2);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.outcomes-card:hover .outcomes-icon {
    transform: scale(1.08) rotate(-3deg);
}

.outcomes-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-brown);
}

.outcomes-list {
    list-style: none;
}

.outcomes-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-medium);
    transition: transform 0.2s ease;
}

.outcomes-list li:hover {
    transform: translateX(4px);
}

.outcomes-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-terracotta);
    transition: transform 0.2s ease;
}

.outcomes-list li:hover::before {
    transform: scale(1.5);
}

/* =============================================
   RESOURCES SECTION
   ============================================= */
.resources-section {
    padding: 5rem 0;
    background: var(--neutral-cream);
}

.resources-table-container {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.4s ease;
}

.resources-table-container:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.resources-table {
    width: 100%;
}

.resources-header {
    display: grid;
    grid-template-columns: 1fr 200px 1fr;
    background: linear-gradient(135deg, var(--accent-terracotta) 0%, var(--primary-brown) 100%);
    color: #fff;
}

.resources-header-cell {
    padding: 1.4rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.resources-header-cell:last-child {
    border-right: none;
}

.resources-row {
    display: grid;
    grid-template-columns: 1fr 200px 1fr;
    border-bottom: 1px solid var(--neutral-beige);
    transition: all 0.3s ease;
}

.resources-row:hover {
    background: rgba(176, 78, 18, 0.03);
}

.resources-row:last-child {
    border-bottom: none;
}

.resource-item {
    padding: 1.4rem 1rem;
    border-right: 1px solid var(--neutral-beige);
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
}

.resource-provider {
    padding: 1.4rem 1rem;
    border-right: 1px solid var(--neutral-beige);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--primary-brown);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-notes {
    padding: 1.4rem 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
}

/* =============================================
   IMPACT SECTION
   ============================================= */
.impact-section {
    padding: 5rem 0;
    background: var(--white);
}

.impact-table-container {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.4s ease;
}

.impact-table-container:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.impact-table {
    width: 100%;
}

.impact-header {
    display: grid;
    grid-template-columns: 1fr 200px;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--accent-terracotta) 100%);
    color: #fff;
}

.impact-header-cell {
    padding: 1.4rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.impact-header-cell:last-child {
    border-right: none;
}

.impact-row {
    display: grid;
    grid-template-columns: 1fr 200px;
    border-bottom: 1px solid var(--neutral-beige);
    transition: all 0.3s ease;
}

.impact-row:hover {
    background: rgba(160, 78, 27, 0.03);
}

.impact-row:last-child {
    border-bottom: none;
}

.impact-indicator {
    padding: 1.4rem 1rem;
    border-right: 1px solid var(--neutral-beige);
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
}

.impact-target {
    padding: 1.4rem 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-brown);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =============================================
   CONTACT / APPLY SECTION
   ============================================= */
.training-contact-section {
    padding: 5rem 0;
    background: linear-gradient(160deg, var(--neutral-light) 0%, var(--neutral-cream) 100%);
}

.training-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.training-contact-info {
    position: sticky;
    top: 100px;
}

.contact-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    margin-bottom: 1rem;
    font-weight: 700;
    background: rgba(176, 78, 18, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.training-contact-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.training-contact-info > p {
    font-size: 1.02rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(1, 105, 5, 0.12);
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-sage) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(1, 105, 5, 0.2);
    transition: transform 0.3s ease;
}

.contact-detail-item:hover .contact-detail-icon {
    transform: scale(1.08);
}

.contact-detail-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-medium);
    margin-bottom: 2px;
    font-weight: 600;
    opacity: 0.7;
}

.contact-detail-item a,
.contact-detail-item span:not(.contact-detail-label) {
    font-size: 0.98rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-detail-item a:hover {
    color: var(--accent-terracotta);
}

/* Form Wrapper */
.training-contact-form-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.training-contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-terracotta), var(--primary-brown));
    background-size: 200% 100%;
    animation: gradientShift 4s ease infinite;
}

.form-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.form-heading em {
    font-style: italic;
    color: var(--accent-terracotta);
}

.form-subheading {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--text-medium);
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.75;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--neutral-light);
    border: 2px solid transparent;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    width: 100%;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-medium);
    opacity: 0.5;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-terracotta);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(176, 78, 18, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.error-msg {
    font-size: 0.75rem;
    color: var(--error-color, #f44336);
    display: none;
    margin-top: 2px;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: var(--error-color, #f44336);
    background: #fef5f5;
}

.form-group.has-error .error-msg {
    display: block;
}

.recaptcha-group {
    margin: 0.5rem 0;
}

.form-actions {
    margin-top: 0.5rem;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.88rem;
    letter-spacing: 0.15em;
    padding: 1.1rem 2rem;
    border: none;
    cursor: pointer;
}

.submit-btn.btn-loading {
    pointer-events: none;
    opacity: 0.85;
}

/* Form Success */
.training-form-success {
    text-align: center;
    padding: 3rem 1rem;
    animation: fadeInUp 0.6s ease-out;
}

.training-form-success .success-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-sage) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(1, 105, 5, 0.25);
    animation: pulse 2s ease-in-out infinite;
}

.training-form-success h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 0.8rem;
}

.training-form-success p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.success-actions .cta-btn {
    width: 100%;
    justify-content: center;
}

/* =============================================
   CTA BUTTONS (shared)
   ============================================= */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.02em;
}

.cta-btn.primary {
    background: var(--accent-terracotta);
    color: #fff;
    box-shadow: 0 4px 16px rgba(176, 78, 18, 0.25);
}

.cta-btn.primary:hover {
    background: var(--primary-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(176, 78, 18, 0.35);
    color: #fff;
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary-brown);
    border: 2px solid var(--neutral-beige);
}

.cta-btn.secondary:hover {
    border-color: var(--accent-terracotta);
    color: var(--accent-terracotta);
    transform: translateY(-2px);
}

/* =============================================
   PARALLAX SECTIONS
   ============================================= */
.parallax-section-v1,
.parallax-section-v2,
.parallax-section-v3 {
    width: 100%;
    height: 70vh;
    position: relative;
    margin: 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.parallax-section-v1 {
    background-image: url('../../../images/training/HO2A1125.jpg');
}

.parallax-section-v2 {
    background-image: url('../../../images/training/HO2A1891.jpg');
}

.parallax-section-v3 {
    background-image: url('../../../images/training/HO2A2063.jpg');
}

.parallax-overlay-v {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        160deg,
        rgba(1, 105, 5, 0.4) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(160, 78, 27, 0.35) 100%
    );
    pointer-events: none;
}

.parallax-content-v {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0 2rem;
}

.parallax-content-v h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    color: white;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.parallax-content-v p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
}

/* =============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================= */
@media (max-width: 1024px) {
    .training-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .training-contact-info {
        position: static;
    }

    .roadmap-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .outcomes-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* ---- Mentorship table → card layout ---- */
    .mentorship-header {
        display: none;
    }

    .mentorship-row {
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
        margin-bottom: 1rem;
        border: 1px solid var(--neutral-beige);
        border-radius: 14px;
        background: var(--white);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        transition: all 0.3s ease;
    }

    .mentorship-row:hover {
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }

    .track-name {
        justify-content: flex-start;
        border-right: none;
        border-bottom: 1px solid var(--neutral-beige);
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        background: transparent;
    }

    .mentorship-cell {
        border-right: none;
        border-bottom: none;
        padding: 0.5rem 0;
        font-size: 0.92rem;
    }

    .mentorship-cell::before {
        content: attr(data-label);
        display: block;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--accent-terracotta);
        margin-bottom: 0.25rem;
        opacity: 0.8;
    }
}

/* =============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================= */
@media (max-width: 768px) {
    .hero-section {
        height: 62vh;
        min-height: 420px;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.2;
    }

    .hero-tagline {
        font-size: 0.92rem;
    }

    .hero-subtitle {
        font-size: 0.86rem;
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* ---- Programs table → card layout ---- */
    .table-header {
        display: none;
    }

    .table-row {
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
        margin-bottom: 1rem;
        border: 1px solid var(--neutral-beige);
        border-radius: 14px;
        background: var(--white);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        transition: all 0.3s ease;
    }

    .table-row:hover {
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }

    .program-name {
        justify-content: flex-start;
        border-right: none;
        border-bottom: 1px solid var(--neutral-beige);
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        background: transparent;
        font-size: 1.05rem;
    }

    .program-cell {
        border-right: none;
        border-bottom: none;
        padding: 0.5rem 0;
        text-align: left;
    }

    .program-cell::before {
        content: attr(data-label);
        display: block;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--accent-terracotta);
        margin-bottom: 0.25rem;
        opacity: 0.8;
    }

    /* ---- Glance table → card layout ---- */
    .glance-header {
        display: none;
    }

    .glance-row {
        display: flex;
        flex-direction: column;
        padding: 1.2rem;
        margin-bottom: 0.75rem;
        border: 1px solid var(--neutral-beige);
        border-radius: 12px;
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .glance-item {
        border-right: none;
        border-bottom: none;
        background: transparent;
        font-size: 0.85rem;
        padding: 0 0 0.3rem;
        color: var(--accent-terracotta);
    }

    .glance-detail {
        padding: 0;
        font-size: 0.95rem;
    }

    /* ---- Curriculum table → card layout ---- */
    .curriculum-header {
        display: none;
    }

    .curriculum-row {
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
        margin-bottom: 1rem;
        border: 1px solid var(--neutral-beige);
        border-radius: 14px;
        background: var(--white);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        transition: all 0.3s ease;
    }

    .curriculum-row:hover {
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }

    .module-name {
        justify-content: flex-start;
        border-right: none;
        border-bottom: 1px solid var(--neutral-beige);
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        background: transparent;
        font-size: 1.02rem;
    }

    .curriculum-cell {
        border-right: none;
        border-bottom: none;
        padding: 0.5rem 0;
        text-align: left;
    }

    .curriculum-cell::before {
        content: attr(data-label);
        display: block;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--primary-green);
        margin-bottom: 0.25rem;
        opacity: 0.8;
    }

    /* ---- Timetable → card layout ---- */
    .timetable-header {
        display: none;
    }

    .timetable-row {
        display: flex;
        flex-direction: column;
        padding: 1.2rem;
        margin-bottom: 0.75rem;
        border: 1px solid var(--neutral-beige);
        border-radius: 12px;
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .time-slot {
        border-right: none;
        border-bottom: 1px solid var(--neutral-beige);
        background: transparent;
        justify-content: flex-start;
        padding: 0 0 0.6rem;
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
    }

    .activity-cell {
        border-right: none;
        border-bottom: none;
        padding: 0.3rem 0;
    }

    .activity-cell::before {
        content: attr(data-label);
        display: block;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--accent-terracotta);
        margin-bottom: 0.15rem;
        opacity: 0.8;
    }

    .activity-cell:last-child {
        border-bottom: none;
    }

    /* ---- Assessment → card layout ---- */
    .assessment-header {
        display: none;
    }

    .assessment-row {
        display: flex;
        flex-direction: column;
        padding: 1.2rem;
        margin-bottom: 0.75rem;
        border: 1px solid var(--neutral-beige);
        border-radius: 12px;
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .assessment-component {
        border-right: none;
        border-bottom: none;
        padding: 0 0 0.3rem;
        font-size: 0.95rem;
    }

    .assessment-weight {
        border-right: none;
        border-bottom: none;
        justify-content: flex-start;
        text-align: left;
        padding: 0.3rem 0;
        font-size: 1.3rem;
        color: var(--primary-green);
    }

    .assessment-weight::before {
        content: 'Weight: ';
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-medium);
        opacity: 0.6;
    }

    .assessment-standard {
        padding: 0.3rem 0 0;
        font-size: 0.9rem;
    }

    .assessment-standard::before {
        content: 'Min. Standard: ';
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--accent-terracotta);
        opacity: 0.8;
    }

    /* ---- Resources → card layout ---- */
    .resources-header {
        display: none;
    }

    .resources-row {
        display: flex;
        flex-direction: column;
        padding: 1.2rem;
        margin-bottom: 0.75rem;
        border: 1px solid var(--neutral-beige);
        border-radius: 12px;
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .resource-item {
        border-right: none;
        border-bottom: none;
        padding: 0 0 0.3rem;
        font-size: 0.95rem;
    }

    .resource-provider {
        border-right: none;
        border-bottom: none;
        justify-content: flex-start;
        text-align: left;
        padding: 0.3rem 0;
    }

    .resource-provider::before {
        content: 'Provided By: ';
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--primary-green);
        opacity: 0.8;
    }

    .resource-notes {
        padding: 0.3rem 0 0;
        font-size: 0.9rem;
    }

    /* ---- Impact → card layout ---- */
    .impact-header {
        display: none;
    }

    .impact-row {
        display: flex;
        flex-direction: column;
        padding: 1.2rem;
        margin-bottom: 0.75rem;
        border: 1px solid var(--neutral-beige);
        border-radius: 12px;
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .impact-indicator {
        border-right: none;
        border-bottom: none;
        padding: 0 0 0.3rem;
        font-size: 0.95rem;
    }

    .impact-target {
        justify-content: flex-start;
        text-align: left;
        padding: 0.3rem 0 0;
        color: var(--primary-green);
        font-size: 1.2rem;
    }

    /* ---- Outcomes ---- */
    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* ---- Roadmap ---- */
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* ---- Form ---- */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .training-contact-form-wrap {
        padding: 1.8rem;
        border-radius: 16px;
    }

    .container {
        padding: 0 1.2rem;
    }

    .parallax-section-v1,
    .parallax-section-v2,
    .parallax-section-v3 {
        height: 50vh;
        background-attachment: scroll;
    }

    .success-actions {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        margin: 0 auto;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================= */
@media (max-width: 480px) {
    .hero-section {
        height: 58vh;
        min-height: 380px;
    }

    .hero-title {
        font-size: 1.55rem;
        line-height: 1.25;
    }

    .hero-tagline {
        font-size: 0.86rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .hero-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.92rem;
    }

    .training-contact-form-wrap {
        padding: 1.4rem;
    }

    .form-heading {
        font-size: 1.4rem;
    }

    .roadmap-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .roadmap-item {
        padding: 1.4rem 1rem;
    }

    .roadmap-item h4 {
        font-size: 0.95rem;
    }

    .roadmap-item p {
        font-size: 0.82rem;
    }

    .weekend-number {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
        border-radius: 11px;
        margin-bottom: 0.8rem;
    }

    .outcomes-card {
        padding: 1.5rem;
    }

    .outcomes-header h3 {
        font-size: 1.1rem;
    }

    .outcomes-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-detail-item {
        padding: 0.8rem 1rem;
    }

    /* Sections padding reduction */
    .programs-section,
    .program-details-section,
    .curriculum-section,
    .timetable-section,
    .roadmap-section,
    .mentorship-section,
    .assessment-section,
    .outcomes-section,
    .resources-section,
    .impact-section,
    .training-contact-section {
        padding: 3.5rem 0;
    }

    .parallax-section-v1,
    .parallax-section-v2,
    .parallax-section-v3 {
        height: 40vh;
    }

    .parallax-content-v h2 {
        font-size: 1.4rem;
    }

    .parallax-content-v p {
        font-size: 0.92rem;
    }
}

/* =============================================
   HORIZONTAL SCROLL HINT FOR WIDE TABLES ON MOBILE
   Wraps the table containers so they can scroll if needed
   ============================================= */
@media (max-width: 768px) {
    .programs-table-container,
    .program-glance-table,
    .curriculum-table-container,
    .timetable-container,
    .mentorship-table-container,
    .assessment-table-container,
    .resources-table-container,
    .impact-table-container {
        border: none;
        box-shadow: none;
        background: transparent;
        overflow: visible;
    }
}
