/* Activities Page Specific Styles */

/* Page Hero */
.page-hero {
    position: relative;
    padding: 120px 0;
    min-height: 400px;
    background-image: url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(29, 185, 195, 0.85), rgba(58, 91, 160, 0.6));
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    text-align: left;
}

.page-hero .badge-outline {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid var(--white);
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    padding: 100px 0;
}

.bg-soft {
    background-color: var(--bg-soft);
}

/* Programs Overview */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: var(--white);
    padding: 60px 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 3px solid transparent;
}

.program-card.featured {
    border-color: var(--primary-color);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.program-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.program-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.program-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.program-link:hover {
    gap: 12px;
}

/* Program Detail */
.program-detail {
    max-width: 1100px;
    margin: 0 auto;
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--primary-color);
}

.detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
}

.detail-header h2 {
    font-size: 2.8rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.detail-tagline {
    font-size: 1.3rem;
    color: var(--text-muted);
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.content-block h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-block h3 i {
    font-size: 1.8rem;
}

.content-block>p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-main);
}

/* Program List */
.program-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.program-item {
    display: flex;
    gap: 30px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.program-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.item-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
}

.item-content h4 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.item-content>p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.item-content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-content ul li {
    font-size: 1.05rem;
    color: var(--text-main);
    padding-left: 24px;
    position: relative;
}

.item-content ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-weight: 700;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.stat-number span {
    font-size: 1.8rem;
    font-weight: 600;
    margin-left: 4px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Target Grid */
.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.target-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.target-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.target-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.target-card h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.target-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Curriculum List */
.curriculum-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.curriculum-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.curriculum-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.curriculum-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.curriculum-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.feature-item p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Other Activities */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.activity-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.activity-image {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 5rem;
}

.activity-content {
    padding: 40px;
}

.activity-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.activity-content>p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.activity-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--text-main);
}

.activity-highlights li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Active Navigation */
.nav-list a.active {
    color: var(--primary-color);
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .target-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 80px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 60px 0;
    }

    .detail-header {
        flex-direction: column;
        text-align: center;
    }

    .detail-header h2 {
        font-size: 2rem;
    }

    .detail-tagline {
        font-size: 1.1rem;
    }

    .program-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .curriculum-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}