/* Professional Work Page - Clean Modern Design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
}

.professional-container {
    width: 100%;
    margin: 0;
    padding-top: 80px;
}

/* Professional Header - Redesigned */
.professional-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    width: 100%;
    padding: 50px 40px;
    margin-bottom: 2px;
    text-align: center;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-name {
    font-size: 60px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 24px;
    font-weight: 300;
    color: #00a3ff;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.header-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.specialization {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.header-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ccc;
    font-size: 14px;
}

.meta-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.meta-link:hover {
    color: #00a3ff;
}

.meta-link svg {
    opacity: 0.8;
}

.separator {
    color: #666;
}

.meta-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999;
}

.meta-location svg {
    opacity: 0.7;
}

/* Section Styles */
section {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #00a3ff;
}

/* Summary Section */
.summary-section {
    background: #f8f9fa;
}

.summary-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 1000px;
}

/* Career Timeline */
.career-timeline {
    position: relative;
    padding-left: 20px;
}

.career-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.career-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    gap: 30px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}

.career-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.career-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 4px #f8f9fa;
}

.career-item.current::before {
    background: #00a3ff;
    width: 12px;
    height: 12px;
    left: -25px;
}

.career-period {
    flex-shrink: 0;
    width: 180px;
    padding-top: 5px;
}

.date-range {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 4px;
}

.employment-type {
    font-size: 12px;
    color: #999;
}

.career-details {
    flex: 1;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.career-item.current .career-details {
    border-left-color: #00a3ff;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 163, 255, 0.1);
}

.company-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.company-logo {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    object-fit: contain;
    padding: 4px;
    background: #ffffff;
    border-radius: 8px;
    flex-shrink: 0;
}

.company-logo.esports-logo {
    background: #1a1a1a;
}

/* Specific adjustment for Repeat logo */
.company-logo[src*="Repeat-removebg-preview"] {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    transform: scale(1.3);
    padding: 0;
    margin: -8px;
}

.position-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.company-name {
    font-size: 14px;
    color: #666;
}

.responsibilities {
    list-style: none;
    padding: 0;
}

.responsibilities li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
}

.responsibilities li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00a3ff;
    font-weight: bold;
}

/* Current Impact Section - Matches other achievement sections */
.current-impact {
    background: #ffffff;
}

/* Esports Achievements Section - Now matching Work Achievements */
.esports-achievements {
    background: #f8f9fa;
}

/* Skills Section - Clean Layout */
.skills-section {
    background: #ffffff;
}

.skills-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    max-width: 1400px;
}

.skills-column {
    position: relative;
}

.skills-heading {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00a3ff;
}

.skill-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skill-item {
    font-size: 14px;
    color: #4a4a4a;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.skill-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00a3ff;
    font-weight: bold;
    font-size: 20px;
    line-height: 14px;
}

.skill-item:hover {
    color: #00a3ff;
    transform: translateX(5px);
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1400px;
}

.achievement-metric {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
}

.achievement-metric.visible {
    opacity: 1;
    transform: scale(1);
    animation: fadeInScale 0.6s ease;
}

.achievement-metric:hover {
    background: #00a3ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 163, 255, 0.2);
}

.metric-number {
    font-size: 42px;
    font-weight: 800;
    color: #00a3ff;
    margin-bottom: 8px;
}

.achievement-metric:hover .metric-number {
    color: #ffffff;
}

.metric-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.achievement-metric:hover .metric-label {
    color: #ffffff;
}

.achievement-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.achievement-item {
    padding: 25px;
    background: #ffffff;
    border-left: 4px solid #00a3ff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.achievement-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.achievement-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* References Section */
.references-section {
    background: #f8f9fa;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.reference-item {
    padding: 25px;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reference-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.reference-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.reference-company {
    font-size: 14px;
    font-weight: 600;
    color: #00a3ff;
    margin-bottom: 16px;
}

.reference-contact {
    display: inline-block;
    font-size: 13px;
    color: #00a3ff;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #00a3ff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.reference-contact:hover {
    background: #00a3ff;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-name {
        font-size: 48px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .career-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .career-period {
        width: auto;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .professional-container {
        padding-top: 60px;
    }
    
    .professional-header {
        padding: 40px 20px;
    }
    
    .hero-name {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 18px;
    }
    
    .header-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .separator {
        display: none;
    }
    
    .section-content {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .career-timeline {
        padding-left: 15px;
    }
    
    .career-details {
        padding: 20px;
    }
    
    .company-logo {
        width: 40px;
        height: 40px;
    }
    
    .position-title {
        font-size: 18px;
    }
    
    .skills-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievement-metric {
        padding: 20px;
    }
    
    .metric-number {
        font-size: 36px;
    }
    
    .achievement-details {
        grid-template-columns: 1fr;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Print Styles */
@media print {
    .professional-container {
        padding-top: 0;
    }
    
    .professional-header {
        background: none;
        border-bottom: 2px solid #000;
    }
    
    .name, .title {
        color: #000;
    }
    
    .contact-item {
        color: #000;
    }
    
    section {
        page-break-inside: avoid;
    }
    
    .career-item, .skill-category, .achievement-metric {
        opacity: 1 !important;
        transform: none !important;
    }
}