/* ==========================
   CAREER PAGE STYLES
   ========================== */

/* Career Hero Section */
.career-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff8345 0%, #e56b2c 100%);
    opacity: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 20%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

.hero-content-career {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-title-career {
    font-size: 5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-career {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.stat-item-career {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line-career {
    display: block;
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.5);
    animation: scrollAnimation 2s ease-in-out infinite;
}

@keyframes scrollAnimation {
    0%, 100% { height: 60px; opacity: 0.5; }
    50% { height: 80px; opacity: 1; }
}

/* Why Join Section */
.why-join-section {
    padding: 8rem 0;
    background: #f8f9fa;
}

.section-header-center {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag-center {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 131, 69, 0.1) 0%, rgba(229, 107, 44, 0.1) 100%);
    border-radius: 50px;
    color: #ff8345;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title-career {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.benefit-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 131, 69, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 131, 69, 0.15);
    border-color: rgba(255, 131, 69, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff8345 0%, #e56b2c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(360deg) scale(1.1);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Positions Section */
.positions-section {
    padding: 8rem 0;
    background: #ffffff;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.position-item {
    background: #ffffff;
    border: 2px solid rgba(255, 131, 69, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.position-item:hover {
    border-color: rgba(255, 131, 69, 0.3);
    box-shadow: 0 15px 50px rgba(255, 131, 69, 0.1);
    transform: translateX(10px);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.position-info {
    flex: 1;
}

.position-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.position-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.meta-item i {
    color: #ff8345;
}

.position-badge {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #ff8345 0%, #e56b2c 100%);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.position-badge.quality {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.position-badge.marketing {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.position-badge.operations {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.position-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.position-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff8345 0%, #e56b2c 100%);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.position-apply-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(255, 131, 69, 0.3);
}

.position-apply-btn i {
    transition: transform 0.3s ease;
}

.position-apply-btn:hover i {
    transform: translateX(5px);
}

/* Career CTA Section */
.career-cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ff8345 0%, #e56b2c 100%);
    text-align: center;
}

.cta-content-career h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-content-career p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-career {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: #ffffff;
    color: #ff8345;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn-career:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title-career {
        font-size: 4rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats-career {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title-career {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-stats-career {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title-career {
        font-size: 2.5rem;
    }

    .position-header {
        flex-direction: column;
        gap: 1rem;
    }

    .position-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title-career {
        font-size: 2.5rem;
    }

    .hero-stats-career {
        flex-direction: column;
        gap: 2rem;
    }

    .section-title-career {
        font-size: 2rem;
    }

    .cta-content-career h2 {
        font-size: 2rem;
    }

    .position-title {
        font-size: 1.5rem;
    }
}



