/* Career Premium Styling */

/* Section Mengapa Berkarir - Premium Interactive Panels */
.career-benefits-premium {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.career-benefits-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(155, 89, 182, 0.05) 0%, transparent 50%);
    animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(10px) translateY(5px); }
    75% { transform: translateX(-5px) translateY(10px); }
}

.benefits-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.benefit-premium-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3498db, #9b59b6);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 18px;
}

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

.benefit-premium-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: #3498db;
    box-shadow: 0 20px 50px rgba(52, 152, 219, 0.3);
}

.benefit-premium-card:hover .benefit-content {
    color: white;
    position: relative;
    z-index: 2;
}

.benefit-premium-card:hover .benefit-icon-premium {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon-premium {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.benefit-icon-premium i {
    font-size: 2rem;
    color: white;
}

.benefit-content {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.benefit-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
}

/* Expandable Job List */
.jobs-expandable-list {
    margin-top: 3rem;
}

.job-expandable-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.job-expandable-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.job-header-expandable {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transition: all 0.3s ease;
}

.job-header-expandable:hover {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.job-header-expandable:hover .job-title-info h3,
.job-header-expandable:hover .job-meta span {
    color: white;
}

.job-title-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.job-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.job-meta span {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.expand-icon {
    font-size: 1.2rem;
    color: #3498db;
    transition: all 0.3s ease;
}

.job-header-expandable:hover .expand-icon {
    color: white;
    transform: rotate(180deg);
}

.job-expandable-item.active .expand-icon {
    transform: rotate(180deg);
}

.job-details-expandable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.job-expandable-item.active .job-details-expandable {
    max-height: 500px;
}

.job-details-content {
    padding: 2rem;
    border-top: 1px solid #e9ecef;
}

.job-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.requirement-item i {
    color: #3498db;
    font-size: 1.1rem;
}

.job-description-expandable {
    margin-bottom: 1.5rem;
}

.job-description-expandable p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.job-responsibilities {
    margin-bottom: 2rem;
}

.job-responsibilities h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.job-responsibilities ul {
    list-style: none;
    padding: 0;
}

.job-responsibilities li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #6c757d;
}

.job-responsibilities li i {
    color: #27ae60;
    font-size: 0.9rem;
}

.apply-btn-premium {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.apply-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Recruitment Process - Cascade Steps */
.recruitment-process-premium {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    position: relative;
    overflow: hidden;
}

.recruitment-process-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(155, 89, 182, 0.1) 0%, transparent 50%);
}

.process-cascade-container {
    position: relative;
    z-index: 2;
}

.process-cascade-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.process-step-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.process-step-card:nth-child(even) {
    transform: translateY(2rem);
}

.process-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #3498db, transparent);
    transform: translateY(-50%);
}

.process-step-card:last-child .step-number::after {
    display: none;
}

.step-icon {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Contact Section Premium */
.career-contact-premium {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.contact-premium-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.contact-premium-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-premium-item:hover {
    transform: translateY(-5px);
    border-color: #3498db;
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
}

.contact-premium-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.contact-premium-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-premium-item p {
    color: #6c757d;
    font-size: 1.1rem;
}

.cta-button-premium {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    margin-top: 2rem;
}

.cta-button-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
    text-decoration: none;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-cascade-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-step-card:nth-child(even) {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .benefits-premium-grid {
        grid-template-columns: 1fr;
    }
    
    .process-cascade-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-step-card {
        transform: translateY(0) !important;
    }
    
    .step-number::after {
        display: none;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-premium-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .career-benefits-premium,
    .recruitment-process-premium {
        padding: 3rem 0;
    }
    
    .benefit-premium-card {
        padding: 2rem 1rem;
    }
    
    .job-header-expandable {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .job-details-content {
        padding: 1.5rem;
    }
}

.job-openings-premium {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a2540 0%, #123b72 100%);
    position: relative;
    overflow: hidden;
}

.job-openings-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(255, 188, 82, 0.14) 0%, rgba(255, 188, 82, 0) 35%),
                radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.12) 0%, rgba(102, 126, 234, 0) 40%);
}

.job-openings-premium .section-header h2,
.job-openings-premium .section-header p { color: #ffffff; }

.job-list-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.job-item-premium {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(0,0,0,0.2);
    border: 2px solid #e9ecef;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.job-item-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 56px rgba(0,0,0,0.25);
    border-color: #667eea;
}

.job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.6rem;
    background: linear-gradient(135deg, #f8f9fa, #eef2ff);
    cursor: pointer;
}

.job-title-section h3 {
    margin: 0 0 6px 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a2540;
}

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

.job-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.job-type { background: rgba(102,126,234,0.12); color: #667eea; }
.job-location { background: rgba(118,75,162,0.12); color: #764ba2; }
.job-level { background: rgba(39,174,96,0.12); color: #27ae60; }
.job-salary { background: rgba(255,188,82,0.18); color: #a56a00; }
.job-posted { background: rgba(10,37,64,0.08); color: #0a2540; }

.job-expand-icon i { color: #667eea; transition: transform 0.25s ease; }
.job-item-premium.active .job-expand-icon i { transform: rotate(180deg); }

.job-details { display: none; background: #ffffff; }

.job-item-premium.active .job-details { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.2rem; }
.job-details { background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%); padding: 1rem 1.2rem; border-top: 1px solid #e9ecef; }
.job-tags { grid-column: 1 / -1; padding: 0 0.4rem; }
.job-apply-section { grid-column: 1 / -1; display: flex; justify-content: flex-end; }

.job-description,
.job-requirements { background: #ffffff; border: 1px solid #e9ecef; border-radius: 14px; padding: 1rem 1.2rem; box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.job-description { border-left: 4px solid #667eea; }
.job-requirements { border-left: 4px solid #27ae60; }

.job-details h4 { margin: 0 0 0.6rem 0; font-size: 1.05rem; font-weight: 700; color: #0a2540; }
.job-details ul { list-style: none; padding-left: 0; margin: 0; }
.job-details li { position: relative; padding-left: 24px; margin-bottom: 8px; color: #44566c; }
.job-details li::before { content: "\f00c"; font-family: "Font Awesome 5 Free"; font-weight: 900; color: #27ae60; position: absolute; left: 0; top: 2px; font-size: 0.9rem; }

@media (max-width: 768px) {
    .job-item-premium.active .job-details { grid-template-columns: 1fr; }
    .job-apply-section { justify-content: flex-start; }
}

.job-description h4,
.job-requirements h4 { color: #0a2540; margin-bottom: 10px; }

.job-description ul,
.job-requirements ul { margin: 0 0 8px 18px; }

.job-apply-section { padding: 0 1.6rem 1.6rem 1.6rem; }

.btn-apply-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-apply-premium:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(102,126,234,0.35); }

.btn-apply-premium .btn-ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.btn-apply-premium .btn-ripple.active { animation: rippleJob 0.6s ease-out; }

@keyframes rippleJob {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0.7; }
    80% { transform: translate(-50%, -50%) scale(12); opacity: 0.2; }
    100% { transform: translate(-50%, -50%) scale(16); opacity: 0; }
}

.job-tags { padding: 0 1.6rem 1rem; display: flex; flex-wrap: wrap; gap: 8px; }
.job-tags span { background: rgba(10,37,64,0.06); color: #0a2540; padding: 6px 10px; border-radius: 999px; font-size: 0.8rem; font-weight: 600; }

@media (max-width: 768px) {
    .job-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}

.recruitment-process-premium .section-header { margin-bottom: 2.5rem; }
.recruitment-steps-cascade { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; position: relative; z-index: 2; }
.step-cascade-item { background: #ffffff; border-radius: 18px; padding: 1.4rem; display: grid; grid-template-columns: 80px 1fr; align-items: start; gap: 1rem; border: 1px solid #e9ecef; box-shadow: 0 14px 32px rgba(0,0,0,0.18); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.step-cascade-item:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(0,0,0,0.22); }
.step-number { grid-column: 1; }
.step-content { grid-column: 2; }
.step-icon { color: #667eea; }
.step-content h3 { margin: 0 0 8px 0; }
.step-content p { margin: 0 0 10px 0; }
.step-features { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-tag { background: rgba(255,188,82,0.18); color: #a56a00; padding: 6px 10px; border-radius: 999px; font-size: 0.8rem; font-weight: 600; }

@media (max-width: 1024px) {
    .recruitment-steps-cascade { grid-template-columns: 1fr; }
}

.contact-career { padding: 5rem 0; background: linear-gradient(135deg, #0a2540 0%, #123b72 100%); position: relative; overflow: hidden; }
.contact-career::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 10%, rgba(255,188,82,0.12) 0%, rgba(255,188,82,0) 35%), radial-gradient(circle at 80% 70%, rgba(102,126,234,0.12) 0%, rgba(102,126,234,0) 40%); }
.contact-career .section-header h2, .contact-career .section-header p { color: #ffffff; }
.contact-career .section-badge { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }
.contact-career .contact-info { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; position: relative; z-index: 2; }
.contact-career .contact-item { background: #ffffff; border-radius: 18px; padding: 1.6rem; text-align: center; border: 1px solid #e9ecef; box-shadow: 0 16px 40px rgba(0,0,0,0.16); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.contact-career .contact-item:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,0.22); border-color: #667eea; }
.contact-career .contact-icon { width: 64px; height: 64px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #ffffff; font-size: 1.6rem; margin-bottom: 0.8rem; }
.contact-career .contact-item h3 { margin: 0 0 6px 0; color: #0a2540; }
.contact-career .contact-item p { margin: 0 0 6px 0; color: #44566c; font-weight: 600; }
.contact-career .contact-item span { color: #667eea; font-size: 0.9rem; }

@media (max-width: 1024px) {
    .contact-career .contact-info { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .contact-career .contact-info { grid-template-columns: 1fr; }
}