/* Job Detail Modal Styles */

.job-detail-modal .modal-dialog {
    max-width: 800px;
}

.job-modal-content {
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    color: #fff;
    overflow: hidden;
}

.job-modal-header {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.job-modal-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.job-modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.3) 0%, rgba(16, 185, 129, 0.3) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.job-modal-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.job-modal-header .modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.job-modal-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 5px 0 0 0;
}

.job-modal-body {
    padding: 40px;
    max-height: 70vh;
    overflow-y: auto;
}

.job-modal-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.job-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.job-feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-3px);
}

.job-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.job-feature-icon i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.job-feature-content h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}

.job-feature-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.job-modal-description,
.job-modal-requirements,
.job-modal-benefits {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid #4F46E5;
}

.job-modal-description h6,
.job-modal-requirements h6,
.job-modal-benefits h6 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
}

.job-modal-description h6 i,
.job-modal-requirements h6 i,
.job-modal-benefits h6 i {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 10px;
}

.job-modal-description p,
.job-modal-requirements p,
.job-modal-benefits p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

.job-modal-footer {
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 40px;
    display: flex;
    justify-content: flex-end;
}

.job-modal-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .job-modal-features {
        grid-template-columns: 1fr;
    }
    
    .job-modal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .job-modal-header-content {
        width: 100%;
    }
    
    .job-modal-body {
        padding: 25px 20px;
        max-height: 60vh;
    }
    
    .job-modal-footer {
        padding: 20px;
        flex-direction: column;
    }
    
    .job-modal-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-whatsapp,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Scrollbar for modal body */
.job-modal-body::-webkit-scrollbar {
    width: 8px;
}

.job-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.job-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    border-radius: 10px;
}

.job-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #6366F1 0%, #059669 100%);
}





