/* Careers Page Styles */

:root {
    --careers-primary: #008B8B;
    --careers-primary-dark: #006B6B;
    --careers-secondary: #20B2AA;
    --careers-accent: #FF6B35;
    --careers-success: #00C48C;
    --careers-danger: #EF5350;
    --careers-dark: #1A1A1A;
    --careers-light: #F5F5F5;
    --careers-border: #E0E0E0;
    --careers-shadow: rgba(0, 0, 0, 0.1);
}

/* Hero Content Customization */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 50px;
    opacity: 0.85;
    font-weight: 300;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--careers-primary);
}

.stat-label {
    font-size: 1rem;
    color: #475569;
    font-weight: 400;
}

/* Filter Section */
.filter-section {
    background: white;
    padding: 40px 0;
    box-shadow: 0 2px 10px var(--careers-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.filter-form {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--careers-dark);
    font-size: 0.9rem;
}

.filter-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--careers-border);
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-select:hover {
    border-color: var(--careers-primary);
}

.filter-select:focus {
    outline: none;
    border-color: var(--careers-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.filter-btn,
.reset-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.filter-btn {
    background: var(--careers-primary);
    color: white;
}

.filter-btn:hover {
    background: var(--careers-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 139, 139, 0.3);
}

.reset-btn {
    background: var(--careers-light);
    color: var(--careers-dark);
    border: 2px solid var(--careers-border);
}

.reset-btn:hover {
    background: white;
    border-color: var(--careers-primary);
    color: var(--careers-primary);
}

/* Jobs Section */
.jobs-section {
    padding: 60px 0;
    background: var(--careers-light);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.job-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px var(--careers-shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    opacity: 1;
    transform: translateY(0);
}

.job-card.animate-in {
    animation: fadeInUp 0.5s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--careers-primary);
}

.job-card.urgent {
    border-color: var(--careers-danger);
}

.urgent-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--careers-danger);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.job-header {
    margin-bottom: 20px;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--careers-dark);
}

.job-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.job-title a:hover {
    color: var(--careers-primary);
}

.job-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.job-department,
.job-type {
    padding: 4px 12px;
    background: var(--careers-light);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--careers-dark);
    font-weight: 500;
}

.job-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--careers-border);
    border-bottom: 1px solid var(--careers-border);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.95rem;
}

.info-item .icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    flex-shrink: 0;
}

.salary {
    color: var(--careers-primary);
    font-weight: 700;
}

.job-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-date {
    color: #94a3b8;
    font-size: 0.85rem;
}

.apply-btn {
    padding: 10px 24px;
    background: var(--careers-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.apply-btn:hover {
    background: var(--careers-primary-dark);
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    padding: 10px 20px;
    background: white;
    color: var(--careers-primary);
    border: 2px solid var(--careers-border);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--careers-primary);
    color: white;
    border-color: var(--careers-primary);
}

.page-current {
    padding: 10px 20px;
    font-weight: 600;
    color: var(--careers-dark);
}

/* No Jobs */
.no-jobs {
    text-align: center;
    padding: 80px 20px;
}

.no-jobs-icon {
    width: 80px;
    height: 80px;
    stroke-width: 1.5;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.no-jobs p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 30px;
}

.back-btn {
    padding: 12px 30px;
    background: var(--careers-primary);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: var(--careers-primary-dark);
    transform: translateY(-2px);
}

/* Why Join Us Section */
.why-join-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--careers-dark);
}

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

.benefit-card {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--careers-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 139, 139, 0.2);
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--careers-dark);
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-form {
        flex-direction: column;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

