/* Recruitment Page Specific Styles */

/* Override section header to ensure vertical centered layout */
.content-section .section-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    grid-template-columns: unset !important;
    gap: 0 !important;
}

.content-section .section-header .section-label {
    display: block !important;
    order: 1 !important;
    padding-top: 0 !important;
    margin-bottom: 16px !important;
}

.content-section .section-header h2 {
    order: 2 !important;
    margin-bottom: 20px !important;
}

.content-section .section-header p {
    order: 3 !important;
    grid-column: unset !important;
}

/* Careers Hero */
.careers-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1a365d 50%, #0a1628 100%);
}

.careers-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 200, 255, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0, 113, 227, 0.15) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

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

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 113, 227, 0.12);
}

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

.benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #e6f2ff 0%, #f0f7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
    fill: #0071e3;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Departments Grid */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.department-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.department-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 113, 227, 0.1);
}

.dept-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0071e3 0%, #00a3ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.dept-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.department-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.department-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.dept-roles {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dept-roles li {
    background: #f0f7ff;
    color: #0071e3;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 20px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 80px;
    right: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0071e3, #00d4ff);
    border-radius: 2px;
}

.process-step-card {
    text-align: center;
    position: relative;
    flex: 1;
    max-width: 180px;
    padding: 0 10px;
}

.process-step-card .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0071e3 0%, #00a3ff 100%);
    color: white;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(0, 113, 227, 0.3);
}

.process-step-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.process-step-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

/* Recruitment CTA Section */
.recruitment-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
}

.recruitment-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cta-info .section-label {
    display: block;
    color: #0071e3;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cta-info h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-info > p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Email CTA Card */
.email-cta {
    background: white;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 0 10px 40px rgba(0, 113, 227, 0.1);
    margin-bottom: 40px;
}

.email-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0071e3 0%, #00a3ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.email-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.email-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.email-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.email-link {
    font-size: 22px;
    font-weight: 600;
    color: #0071e3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Application Tips */
.application-tips h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.application-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.application-tips li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.application-tips li svg {
    width: 20px;
    height: 20px;
    fill: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Company Values Card */
.company-values {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 50px rgba(0, 113, 227, 0.08);
}

.company-values h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 32px;
    text-align: center;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.value-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.value-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e6f2ff 0%, #f0f7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 22px;
    height: 22px;
    fill: #0071e3;
}

.value-item h5 {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step-card {
        max-width: 100%;
    }
    
    .recruitment-cta-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 32px 24px;
    }
    
    .department-card {
        padding: 36px 28px;
    }
    
    .cta-info h2 {
        font-size: 28px;
    }
    
    .email-cta {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
    
    .email-icon {
        margin: 0 auto;
    }
    
    .company-values {
        padding: 36px 28px;
    }
}
