/* ===== KARIR SECTION STYLES ===== */

.karir-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.karir-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23667eea' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Career Hero */
.career-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 50px 40px;
    margin-bottom: 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.career-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.career-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.career-hero h3 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.2;
}

.career-hero p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px;
    opacity: 0.95;
}

.career-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.career-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
}

.career-stats .stat-item i {
    font-size: 18px;
    opacity: 0.9;
}

/* Job Openings */
.job-openings {
    margin-bottom: 60px;
}

.jobs-header {
    text-align: center;
    margin-bottom: 50px;
}

.jobs-title {
    font-size: 32px;
    font-weight: 800;
    color: #2d3748;
    margin: 0 0 16px;
}

.urgent-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-urgent 2s ease-in-out infinite;
}

@keyframes pulse-urgent {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Job Categories */
.job-category {
    margin-bottom: 45px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 24px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 14px;
    border-left: 5px solid #667eea;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.category-title:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.category-title i {
    color: #667eea;
    font-size: 22px;
}

.job-card {
    background: white;
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 22px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.job-card.premium {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
    position: relative;
}

.job-card.premium::before {
    content: '⭐ PRIORITAS';
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #1a202c;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.job-card.modern {
    border: 2px solid #667eea;
    background: linear-gradient(135deg, #f0f3ff 0%, #e6f0ff 100%);
}

.job-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.job-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.job-info {
    flex: 1;
}

.job-info h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 8px;
}

.job-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.job-type, .job-location {
    font-size: 14px;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-type::before {
    content: '💼';
}

.job-location::before {
    content: '📍';
}

.job-priority {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.job-trend {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.job-status {
    flex-shrink: 0;
}

.status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background: #d4edda;
    color: #155724;
}

.status-badge.urgent {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    animation: pulse-badge 1.5s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Job Content */
.job-subjects {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.subject-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.job-description {
    margin-bottom: 20px;
}

.job-description p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.job-requirements h5 {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 12px;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-requirements li {
    padding: 6px 0;
    color: #4a5568;
    position: relative;
    padding-left: 20px;
}

.job-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 60px;
}

.benefits-title {
    font-size: 32px;
    font-weight: 800;
    color: #2d3748;
    text-align: center;
    margin: 0 0 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: white;
    padding: 30px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 20px;
}

.benefit-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 12px;
}

.benefit-card p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Application CTA */
.application-cta {
    background: white;
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: #2d3748;
    margin: 0 0 12px;
}

.cta-content p {
    color: #718096;
    line-height: 1.6;
    margin: 0 0 24px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-apply.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.btn-apply.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-apply.secondary {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.3);
}

.btn-apply.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.4);
}

.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: #f7fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2px;
}

.contact-item span {
    font-size: 13px;
    color: #718096;
}

/* Responsive */
@media (max-width: 768px) {
    .karir-section {
        padding: 60px 0;
    }
    
    .career-hero {
        padding: 40px 24px;
        margin-bottom: 40px;
    }
    
    .career-hero h3 {
        font-size: 28px;
    }
    
    .career-hero p {
        font-size: 16px;
    }
    
    .career-stats {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .jobs-title, .benefits-title {
        font-size: 26px;
    }
    
    .job-card {
        padding: 24px 20px;
    }
    
    .job-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .job-info h4 {
        font-size: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .application-cta {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 24px;
        text-align: center;
    }
    
    .cta-actions {
        justify-content: center;
    }
    
    .btn-apply {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .career-hero {
        padding: 30px 20px;
    }
    
    .career-hero h3 {
        font-size: 24px;
    }
    
    .job-card {
        padding: 20px 16px;
    }
    
    .job-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .job-info h4 {
        font-size: 18px;
    }
    
    .benefit-card {
        padding: 24px 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .application-cta {
        padding: 24px 20px;
    }
    
    .cta-content h3 {
        font-size: 22px;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 12px;
    }
}
/* Tutors Grid */
.tutors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tutor-card {
    background: white;
    padding: 24px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tutor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.tutor-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin: 0 auto 16px;
}

.tutor-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 8px;
}

.tutor-card p {
    font-size: 13px;
    color: #718096;
    margin: 0;
    line-height: 1.4;
}

/* General Requirements */
.general-requirements {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.general-requirements h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.general-requirements h4::before {
    content: '📋';
    font-size: 20px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.req-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
}

.req-item:hover {
    background: #f0f3ff;
    transform: translateX(3px);
}

.req-item.special {
    border-left-color: #ffd700;
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
}

.req-item.special:hover {
    background: linear-gradient(135deg, #fff8e1 0%, #fff3c4 100%);
}

.req-item i {
    color: #667eea;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.req-item.special i {
    color: #ffd700;
}

.req-item span {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
    font-weight: 500;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .karir-section {
        padding: 70px 0;
    }
    
    .career-hero {
        padding: 45px 35px;
        margin-bottom: 50px;
    }
    
    .career-hero h3 {
        font-size: 32px;
    }
    
    .application-cta {
        padding: 35px;
        gap: 35px;
    }
}

@media (max-width: 992px) {
    .karir-section {
        padding: 60px 0;
    }
    
    .career-hero {
        padding: 40px 30px;
        margin-bottom: 45px;
    }
    
    .career-hero h3 {
        font-size: 30px;
    }
    
    .career-stats {
        gap: 30px;
    }
    
    .job-card {
        padding: 25px 20px;
    }
    
    .job-header {
        gap: 16px;
    }
    
    .job-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .application-cta {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .karir-section {
        padding: 50px 0;
    }
    
    .jobs-header {
        margin-bottom: 35px;
    }
    
    .jobs-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .urgent-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .career-hero {
        padding: 35px 25px;
        margin-bottom: 40px;
    }
    
    .career-hero h3 {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .career-hero p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .career-stats {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .career-stats .stat-item {
        font-size: 14px;
    }
    
    .category-title {
        font-size: 20px;
        padding: 14px 18px;
        margin-bottom: 20px;
    }
    
    .job-card {
        padding: 22px 18px;
        margin-bottom: 20px;
    }
    
    .job-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        margin-bottom: 20px;
        padding-bottom: 16px;
    }
    
    .job-info h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .job-meta {
        justify-content: center;
        gap: 12px;
    }
    
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .tutor-card {
        padding: 18px 16px;
    }
    
    .tutor-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .tutor-card h5 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .tutor-card p {
        font-size: 12px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .general-requirements {
        padding: 25px 20px;
        margin-top: 35px;
    }
    
    .general-requirements h4 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .req-item {
        padding: 14px 16px;
    }
    
    .req-item span {
        font-size: 13px;
    }
    
    .application-cta {
        padding: 30px 25px;
        gap: 25px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .cta-actions {
        justify-content: center;
        gap: 12px;
    }
    
    .btn-apply {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .karir-section {
        padding: 40px 0;
    }
    
    .jobs-header {
        margin-bottom: 30px;
    }
    
    .jobs-title {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .urgent-badge {
        font-size: 11px;
        padding: 5px 14px;
    }
    
    .career-hero {
        padding: 30px 20px;
        margin-bottom: 35px;
    }
    
    .career-hero h3 {
        font-size: 22px;
        line-height: 1.4;
    }
    
    .career-hero p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .hero-badge {
        font-size: 13px;
        padding: 6px 14px;
        margin-bottom: 16px;
    }
    
    .career-stats .stat-item {
        font-size: 13px;
    }
    
    .category-title {
        font-size: 18px;
        padding: 12px 16px;
        margin-bottom: 18px;
    }
    
    .job-card {
        padding: 20px 16px;
        margin-bottom: 18px;
    }
    
    .job-card.premium::before {
        font-size: 10px;
        padding: 3px 10px;
        top: -10px;
        right: 16px;
    }
    
    .job-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .job-info h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .job-meta {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .job-type, .job-location {
        font-size: 13px;
    }
    
    .job-priority, .job-trend {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .status-badge {
        padding: 4px 12px;
        font-size: 11px;
    }
    
    .subject-tag {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .job-requirements h5 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .job-requirements li {
        font-size: 13px;
        padding: 4px 0;
        padding-left: 18px;
    }
    
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .tutor-card {
        padding: 16px 14px;
    }
    
    .tutor-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .tutor-card h5 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .tutor-card p {
        font-size: 11px;
    }
    
    .benefits-title, .jobs-title {
        font-size: 20px;
    }
    
    .benefit-card {
        padding: 20px 16px;
    }
    
    .benefit-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 14px;
    }
    
    .benefit-card h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .benefit-card p {
        font-size: 13px;
    }
    
    .general-requirements {
        padding: 20px 16px;
        margin-top: 30px;
    }
    
    .general-requirements h4 {
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .req-item {
        padding: 12px 14px;
    }
    
    .req-item i {
        font-size: 14px;
    }
    
    .req-item span {
        font-size: 12px;
    }
    
    .application-cta {
        padding: 25px 20px;
        gap: 20px;
    }
    
    .cta-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .cta-content p {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-apply {
        padding: 11px 20px;
        font-size: 13px;
        width: 100%;
        max-width: none;
    }
    
    .cta-contact {
        gap: 12px;
    }
    
    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .contact-item strong {
        font-size: 13px;
    }
    
    .contact-item span {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .career-hero h3 {
        font-size: 20px;
    }
    
    .career-hero p {
        font-size: 14px;
    }
    
    .jobs-title {
        font-size: 18px;
    }
    
    .category-title {
        font-size: 16px;
        padding: 10px 14px;
    }
    
    .job-card {
        padding: 18px 14px;
    }
    
    .job-info h4 {
        font-size: 16px;
    }
    
    .general-requirements h4 {
        font-size: 16px;
    }
    
    .cta-content h3 {
        font-size: 18px;
    }
}
/* Utility Classes for Better Spacing */
.container {
    padding-left: 20px;
    padding-right: 20px;
}

/* Improved Mobile Navigation */
@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* Better Text Readability */
.job-requirements li,
.req-item span,
.benefit-card p,
.tutor-card p {
    line-height: 1.6;
}

/* Improved Button Spacing */
.cta-actions {
    margin-top: 20px;
}

/* Better Card Shadows for Mobile */
@media (max-width: 768px) {
    .job-card,
    .benefit-card,
    .tutor-card,
    .general-requirements,
    .application-cta {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    }
    
    .job-card:hover,
    .benefit-card:hover,
    .tutor-card:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
}

/* Improved Focus States for Accessibility */
.btn-apply:focus,
.job-card:focus-within {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Better Animation Performance */
.job-card,
.benefit-card,
.tutor-card,
.req-item {
    will-change: transform;
}

/* Smooth Scrolling for Anchor Links */
html {
    scroll-behavior: smooth;
}

/* Loading State Optimization */
.karir-section * {
    box-sizing: border-box;
}

/* Print Styles */
@media print {
    .karir-section {
        background: white !important;
        padding: 20px 0 !important;
    }
    
    .career-hero,
    .job-card,
    .benefit-card {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        break-inside: avoid;
    }
    
    .urgent-badge,
    .status-badge,
    .subject-tag {
        background: #f0f0f0 !important;
        color: #333 !important;
    }
}