/* ============================================================
   Career Path Styles
   ============================================================ */

.career-path-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.career-path-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.career-path-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Career Path Explorer */
.career-explorer {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.career-categories {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.career-category-btn {
    padding: 10px 20px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.career-category-btn:hover,
.career-category-btn.active {
    border-color: #667eea;
    background: #667eea;
    color: white;
}

/* Career Path Cards */
.career-paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.career-path-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.career-path-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.2);
}

.career-path-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
    flex-shrink: 0;
}

.career-path-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.career-path-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.career-path-category {
    font-size: 0.9rem;
    opacity: 0.9;
}

.career-path-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.career-path-description {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.career-path-stats {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 15px;
}

.career-stat {
    flex: 1;
    text-align: center;
}

.career-stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.career-stat-label {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    margin-top: 4px;
}

.career-path-demand {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
}

.demand-high {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.demand-medium {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.demand-low {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.career-path-footer {
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.career-path-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #667eea;
    color: white;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.career-path-btn:hover {
    background: #764ba2;
}

/* Career Path Detail Page */
.career-detail-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.career-detail-banner h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.career-detail-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.career-detail-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.career-detail-meta-item {
    text-align: center;
}

.career-detail-meta-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.career-detail-meta-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Career Stages */
.career-stages {
    padding: 60px 0;
    background: white;
}

.career-stages-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e293b;
}

.career-stages-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
}

.career-stages-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.career-stage-item {
    flex: 1;
    position: relative;
    z-index: 1;
}

.career-stage-dot {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.career-stage-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    text-align: center;
}

.career-stage-description {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-align: center;
}

.career-stage-salary {
    background: #f8fafc;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 15px;
}

.career-stage-skills {
    font-size: 0.9rem;
    color: #64748b;
}

.career-stage-skills li {
    margin-bottom: 8px;
}

/* Requirements */
.career-requirements {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.requirement-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.requirement-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.requirement-icon {
    width: 50px;
    height: 50px;
    background: #f0f4ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #667eea;
}

.requirement-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.requirement-level {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    margin-top: 4px;
}

.requirement-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.level-required {
    color: #ef4444;
    font-weight: 600;
}

.level-recommended {
    color: #f59e0b;
    font-weight: 600;
}

.level-optional {
    color: #10b981;
    font-weight: 600;
}

/* Top Schools */
.top-schools {
    padding: 60px 0;
    background: white;
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.school-recommendation {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.school-recommendation:hover {
    border-color: #667eea;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.15);
}

.school-recommendation-header {
    padding: 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.school-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.program-name {
    color: #667eea;
    font-size: 0.95rem;
    font-weight: 600;
}

.school-recommendation-body {
    padding: 20px;
}

.school-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.school-stat-item {
    flex: 1;
}

.school-stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.school-stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
}

.school-success-rate {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f0fdf4;
    border-radius: 8px;
    margin-bottom: 15px;
}

.success-rate-bar {
    flex: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.success-rate-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
}

.school-salary {
    padding: 10px;
    background: #f0f4ff;
    border-radius: 8px;
    color: #667eea;
    font-weight: 600;
    text-align: center;
}

.recommended-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Success Stories */
.success-stories-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.story-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.story-photo {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.story-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 25px;
}

.story-header {
    margin-bottom: 15px;
}

.story-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.story-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 3px;
}

.story-company {
    color: #94a3b8;
    font-size: 0.95rem;
}

.story-text {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.story-meta {
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.story-school {
    color: #94a3b8;
    font-size: 0.9rem;
}

.story-salary {
    background: #f0f4ff;
    color: #667eea;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
}

/* Related Careers */
.related-careers {
    padding: 60px 0;
    background: white;
}

.related-careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .career-path-hero h1 {
        font-size: 2rem;
    }

    .career-detail-banner h1 {
        font-size: 2rem;
    }

    .career-stages-timeline {
        flex-direction: column;
    }

    .career-stages-timeline::before {
        left: 40px;
        top: 0;
        right: auto;
        width: 2px;
        height: 100%;
    }

    .career-stage-dot {
        margin-left: -10px;
        margin-right: 0;
    }

    .career-detail-meta {
        flex-direction: column;
        gap: 15px;
    }

    .career-paths-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .career-path-card-header {
        padding: 20px 15px;
    }

    .career-path-title {
        font-size: 1.1rem;
    }

    .career-path-icon {
        font-size: 2.5rem;
    }

    .career-stat-value {
        font-size: 1.1rem;
    }

    .career-categories {
        gap: 8px;
    }

    .career-category-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .career-explorer {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    }

    .career-path-card {
        background: #1e293b;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .career-path-card-body,
    .requirement-item,
    .school-recommendation,
    .story-card {
        background: #1e293b;
        color: #e2e8f0;
    }

    .career-path-description,
    .requirement-description,
    .story-text {
        color: #cbd5e1;
    }

    .career-category-btn {
        background: #1e293b;
        border-color: #334155;
        color: #cbd5e1;
    }

    .career-category-btn:hover,
    .career-category-btn.active {
        background: #667eea;
        border-color: #667eea;
    }
}
