/* ===== INTERNSHIP PAGE STYLES ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a2942 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: var(--color-text-light);
}

.page-header h1 {
    font-size: 48px;
    font-family: var(--font-heading);
    margin-bottom: 16px;
    color: var(--color-accent);
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Internship Introduction */
.internship-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 36px;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 24px;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 20px;
}

/* Internship Types */
.internship-types {
    padding: 80px 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.type-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--color-accent);
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a2942 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.type-icon i {
    font-size: 36px;
    color: var(--color-accent);
}

.type-card h3 {
    font-size: 22px;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 12px;
}

.type-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
}

/* Benefits */
.internship-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #d4b87a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 32px;
    color: white;
}

.benefit-card h3 {
    font-size: 22px;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
}

/* Application Process */
.application-process {
    padding: 80px 0;
}

.process-timeline {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-primary) 100%);
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #d4b87a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
    z-index: 1;
}

.step-content {
    flex: 1;
    background: white;
    padding: 24px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.step-content h3 {
    font-size: 22px;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card:hover {
        transform: translateY(-8px);
    }

    .process-timeline::before {
        left: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .process-step {
        gap: 20px;
    }
}