/* Careers Page Specific Styles */

/* Careers Hero Section */
.careers-hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    margin-top: 70px;
    overflow: hidden;
    padding: 3rem 0;
}

.careers-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.energy-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    animation: waves-flow 20s ease-in-out infinite alternate;
}

.particle-system {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 127, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px, 80px 80px, 60px 60px;
    animation: particle-drift 30s linear infinite;
}

.careers-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    z-index: 10;
    position: relative;
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out both;
}

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

.careers-title .highlight {
    background: linear-gradient(135deg, #00d4ff, #00ff7f);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { 
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }
    100% { 
        text-shadow: 0 0 30px rgba(0, 255, 127, 0.7), 0 0 40px rgba(0, 212, 255, 0.3);
    }
}

.careers-subtitle {
    font-size: 1.5rem;
    text-align: center;
    color: #00ff7f;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.2s both;
}

.careers-description {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 0.5rem;
    color: #00d4ff;
}

.stat-icon svg {
    width: 2rem;
    height: 2rem;
    fill: currentColor;
    opacity: 1;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

/* Culture Section */
.culture-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.culture-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.culture-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #00ff7f);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.culture-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: #00d4ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.culture-icon svg {
    width: 100%;
    height: 100%;
}

.culture-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.culture-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.culture-quote {
    font-style: italic;
    color: #00d4ff;
    font-size: 0.9rem;
    border-left: 3px solid #00d4ff;
    padding-left: 1rem;
    margin-top: 1rem;
}

/* Work Environment Section */
.work-environment {
    padding: 6rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f1a 100%);
}

.environment-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: stretch;
}

.environment-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.environment-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.perks-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.perk-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.perk-item:hover {
    background: rgba(0, 212, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.perk-icon {
    min-width: 4px;
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, #00d4ff, #00ff7f);
    border-radius: 2px;
    flex-shrink: 0;
}

.perk-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.perk-content p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.environment-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.office-preview {
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.office-element {
    position: absolute;
    border-radius: 5px;
}

.desk {
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 40px;
    background: #2d2d44;
}

.screen {
    bottom: 60px;
    left: 50px;
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, #00d4ff, #00ff7f);
    opacity: 0.8;
    animation: screen-glow 3s ease-in-out infinite alternate;
}

.plants {
    bottom: 60px;
    right: 40px;
    width: 20px;
    height: 30px;
    background: #27ca3f;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.coffee {
    bottom: 60px;
    left: 150px;
    width: 15px;
    height: 20px;
    background: #8B4513;
    border-radius: 3px;
    position: relative;
}

.coffee::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.office-caption {
    color: #888888;
    font-size: 0.9rem;
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: #cccccc;
    font-style: italic;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    padding-left: 2rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #00d4ff;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #00ff7f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-name {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.author-role {
    color: #888888;
    font-size: 0.9rem;
}

/* Positions Section */
.positions-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f1a 0%, #16213e 100%);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.position-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.position-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #00ff7f);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.position-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0;
}

.position-type {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.position-location {
    color: #888888;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.position-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.skill-tag {
    background: rgba(0, 255, 127, 0.1);
    color: #00ff7f;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 127, 0.3);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(0, 255, 127, 0.2);
    transform: scale(1.05);
}

.position-apply {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #00ff7f);
    color: #000000;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.position-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.general-application {
    margin-top: 3rem;
    width: 100%;
}

.general-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 255, 127, 0.08));
    border: 2px solid rgba(0, 212, 255, 0.25);
    border-radius: 25px;
    padding: 3.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.general-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #00ff7f);
    animation: shimmer 1.5s ease-out forwards;
}

@keyframes shimmer {
    0% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(0%); }
    100% { opacity: 1; transform: translateX(100%); }
}

.general-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.general-card p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Active Navigation Link */
.nav-link.active {
    color: #00d4ff;
}

.nav-link.active::after {
    width: 100%;
}

/* Animations */
@keyframes waves-flow {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.05) rotate(3deg); }
}

@keyframes particle-drift {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-50px) translateY(-30px); }
}

@keyframes screen-glow {
    0% { opacity: 0.6; box-shadow: 0 0 10px rgba(0, 212, 255, 0.3); }
    100% { opacity: 1; box-shadow: 0 0 20px rgba(0, 212, 255, 0.6); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .careers-hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 4rem;
    }

    .careers-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .careers-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .general-application {
        margin-top: 3rem !important;
    }

    .hero-stats {
        gap: 1rem;
    }
    
    .general-card {
        padding: 2.5rem 1.5rem;
    }
    
    .general-card h3 {
        font-size: 1.5rem;
    }
    
    .general-card p {
        font-size: 1rem;
    }

    .hero-stat {
        padding: 0.8rem;
        min-width: 120px;
    }

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

    .perks-list {
        grid-template-columns: 1fr;
    }

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

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

    .position-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .environment-text h2 {
        font-size: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .culture-section,
    .work-environment,
    .testimonials-section,
    .positions-section {
        padding: 4rem 0;
    }

    .culture-card,
    .testimonial-card,
    .position-card {
        padding: 1.5rem;
    }

    .general-card {
        padding: 2rem;
    }

    .careers-title {
        font-size: 2rem;
    }

    .office-preview {
        width: 250px;
        height: 150px;
    }

    .perks-list {
        gap: 1rem;
    }

    .perk-item {
        flex-direction: column;
        text-align: center;
    }
} 